๐Ÿ’ป 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)