๐ป Coding
Scripts, small tools, and things I'm learning along the way. Mostly Python and web stuff โ nothing too serious, just solving my own problems.
๐งฐ Languages & Tools
๐Python
๐HTML/CSS
โ๏ธMicroPython
๐Arduino
๐ Projects
๐ก๏ธ Sensor Logger
Python script to read DHT22 sensor data over serial and log it to a CSV file. Used for the greenhouse project.
PythonSerial๐ธ This Website
Hand-coded HTML/CSS personal site hosted on Neocities. Keeps me practicing web basics.
HTMLCSS๐ค ESP8266 Web Server
MicroPython sketch that hosts a tiny web page showing live sensor readings. Runs entirely on the ESP chip.
MicroPythonESP8266โ๏ธ Snippet of the moment
Python โ read DHT22 over serial
import serial, time
s = serial.Serial('/dev/ttyUSB0', 115200)
while True:
line = s.readline().decode().strip()
print(f"[{time.strftime('%H:%M:%S')}] {line}")
time.sleep(1)