From 3a16f35a9c29b7fb63cbfb993d8e2836c8c6e4bb Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Sun, 4 May 2025 16:28:38 -0400 Subject: [PATCH] . --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 177bffc..e73716e 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,15 @@ def status_led(): time.sleep_ms(250) led.value(0) time.sleep_ms(750) + +# Display information about ESP32S3 module +print(os.uname()) +print("Flash size: ", esp.flash_size()/1024/1024, "Mb") +print("MCU Temperature: ", esp32.mcu_temperature(), "C") + +led = Pin(45, Pin.OUT) +led.value(0) +_thread.start_new_thread(status_led, ()) ```