114532 Views
101685 Views
86270 Views
54891 Views
51137 Views
49962 Views
Level Up your CAD Skills
Operation Pico
Raspberry Pi Home Hub
Hacky Temperature and Humidity Sensor
Robot Makers Almanac
High Five Bot
Using the Raspberry Pi Pico's Built-in Temperature Sensor
Getting Started with SQL
Introduction to the Linux Command Line on Raspberry Pi OS
How to install MicroPython
Wall Drawing Robot Tutorial
BrachioGraph Tutorial
KevsRobots Learning Platform
88% Percent Complete
By Kevin McAleer, 3 Minutes
Now that you’ve built a functional temperature monitoring and alert system, it’s time to expand your skills by exploring additional projects and extensions. In this lesson, we’ll discuss creative ways to enhance your project and integrate it with other systems.
.csv
Example script snippet:
with open("temperature_log.csv", "a") as log: log.write(f"{timestamp.tm_hour:02}:{timestamp.tm_min:02}:{timestamp.tm_sec:02}, {temperature:.2f}\n")
Example using GPIO:
import machine led = machine.Pin(25, machine.Pin.OUT) led.on() if temperature > MAX_TEMP else led.off()
from ssd1306 import SSD1306_I2C oled = SSD1306_I2C(128, 64, i2c) oled.text(f"Temp: {temperature:.2f}C", 0, 0) oled.show()
This lesson has provided you with ideas and tools to expand your project and take it to the next level. The possibilities are endless—let your creativity lead the way!
< Previous Next >