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, ()) + ```