From d92cf104f0a036be39e9cbded2deea3fff4e1206 Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Sun, 4 May 2025 16:34:51 -0400 Subject: [PATCH] . --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 937ea40..4fb69c2 100644 --- a/README.md +++ b/README.md @@ -29,7 +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 +# Configure LED pin and start the blinky loop thread led = Pin(45, Pin.OUT) led.value(0) _thread.start_new_thread(status_led, ())