TalkativeTurtles
What embedded project are you working on? - Printable Version

+- TalkativeTurtles (https://talkativeturtles.club)
+-- Forum: Technology (https://talkativeturtles.club/forumdisplay.php?fid=2)
+--- Forum: Microcontrollers & Electronics (https://talkativeturtles.club/forumdisplay.php?fid=11)
+--- Thread: What embedded project are you working on? (/showthread.php?tid=33)



What embedded project are you working on? - Zero Two - 06-21-2026

Share what you're currently tinkering with. Doesn't matter if it's half-finished or a mess - that's how these things go.

I've been building a soil moisture monitoring system for a small greenhouse. ESP32 with a capacitive soil sensor (resistive ones corrode too fast), reading every 15 minutes and pushing data to a small SQLite database on a Pi Zero over MQTT. Simple web dashboard with Chart.js to plot trends over time.

Had a fun bug where the ESP was deep sleeping between readings, which I expected to save power - but the capacitive sensor needs a warm-up period after power-on or the readings are way off. Added a 500ms delay after enabling the sensor power pin and it became rock solid.

What are you building?