From 3f0899ed14233cfd1df83442bd4d2dc6b292a288 Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Sun, 4 May 2025 16:34:41 -0400 Subject: [PATCH] . --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7435863..937ea40 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ print("Flash size: ", esp.flash_size()/1024/1024, "Mb") #rint("MCU Temperature: ", esp32.mcu_temperature(), "C") print("MCU Temperature: {:4.1f} C".format(esp32.mcu_temperature())) +# Configure LED pin and start loop thread led = Pin(45, Pin.OUT) led.value(0) _thread.start_new_thread(status_led, ())