From 8609399f24d1482ec2ff17867702948eda1326bb Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Sun, 4 May 2025 16:29:53 -0400 Subject: [PATCH] . --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e73716e..0b1ab15 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,9 @@ def status_led(): # Display information about ESP32S3 module print(os.uname()) print("Flash size: ", esp.flash_size()/1024/1024, "Mb") -print("MCU Temperature: ", esp32.mcu_temperature(), "C") +#rint("MCU Temperature: ", esp32.mcu_temperature(), "C") + +print("MCU Temperature: {:4.1f} C".format(esp32.mcu_temperature())) led = Pin(45, Pin.OUT) led.value(0)