diff --git a/firmware/ESP32_GENERIC-20240602-v1.23.0.bin b/firmware/ESP32_GENERIC-20240602-v1.23.0.bin new file mode 100644 index 0000000..16f70b5 Binary files /dev/null and b/firmware/ESP32_GENERIC-20240602-v1.23.0.bin differ diff --git a/firmware/ESP32_GENERIC-20240602-v1.23.0.elf b/firmware/ESP32_GENERIC-20240602-v1.23.0.elf new file mode 100644 index 0000000..ec78d67 Binary files /dev/null and b/firmware/ESP32_GENERIC-20240602-v1.23.0.elf differ diff --git a/firmware/boot.py b/firmware/boot.py new file mode 100644 index 0000000..1ac0af7 --- /dev/null +++ b/firmware/boot.py @@ -0,0 +1,19 @@ +def do_connect(): + import network + wlan = network.WLAN(network.STA_IF) + wlan.active(True) + if not wlan.isconnected(): + print('connecting to network...') + wlan.connect('nubbe', 'MFhBB!MThAuE!') + while not wlan.isconnected(): + pass + print('network config:', wlan.ifconfig()) + +do_connect() +import gc +import webrepl + +webrepl.start() + +gc.collect() +