Update index.md

This commit is contained in:
2025-05-05 20:02:33 -04:00
committed by GitHub
parent 50900c6503
commit 849d9eb793

View File

@@ -39,8 +39,13 @@ print("=====================================\n")
print(os.uname()) print(os.uname())
print("\n=====================================") print("\n=====================================")
print("Flash size: ", esp.flash_size()/1024/1024, "Mb") 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())) print("MCU Temperature: {:4.1f} C".format(esp32.mcu_temperature()))
connect_wifi() 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, ())
``` ```