From 849d9eb79306181ef7456de461b83d3a7d9e346f Mon Sep 17 00:00:00 2001 From: Alexandre B Date: Mon, 5 May 2025 20:02:33 -0400 Subject: [PATCH] Update index.md --- index.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/index.md b/index.md index 8319db3..7362cf3 100644 --- a/index.md +++ b/index.md @@ -39,8 +39,13 @@ print("=====================================\n") print(os.uname()) print("\n=====================================") 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())) connect_wifi() + +# Configure LED pin and start the blinky loop thread +#led = Pin(45, Pin.OUT) +#led.value(0) +#_thread.start_new_thread(status_led, ()) + ```