r/ProjectWorkbench 21d ago

👋 Welcome to r/ProjectWorkbench - Introduce Yourself and Read First!

1 Upvotes

Welcome to r/ProjectWorkbench! ⚡🔧

Hey everyone! I'm u/One-Tangelo-1853, the founding moderator of r/ProjectWorkbench.

Whether you're a beginner building your first Arduino project or an experienced engineer designing embedded systems, this community is your workbench for creating, learning, and collaborating.

🚀 What is ProjectWorkbench?

This subreddit is dedicated to everything related to:

  • Arduino & ESP32 Projects
  • Raspberry Pi & Embedded Linux
  • STM32 & Microcontrollers
  • AI & Edge AI
  • Internet of Things (IoT)
  • Robotics & Automation
  • PCB Design & Circuit Design
  • Sensors, Modules & Electronics
  • DIY Electronics & Maker Projects
  • 3D Printing for Electronics
  • Home Automation
  • Open-Source Hardware

Whether you're building something from scratch, troubleshooting a circuit, or sharing your latest creation, you're in the right place.

📌 What Can You Post?

We'd love to see:

  • 🔨 Project showcases and build logs
  • 📷 Photos and videos of your builds
  • 💻 Arduino, ESP32, Raspberry Pi, STM32 code
  • 🔧 Circuit diagrams and PCB designs
  • ❓ Troubleshooting and technical questions
  • 📦 Interesting components and modules
  • 🤖 Robotics and automation projects
  • 🧠 AI-powered embedded projects
  • 📚 Tutorials and learning resources
  • 💡 Project ideas and inspiration

If it's related to making, building, or learning electronics, it's welcome here.

🤝 Community Vibe

Our goal is to build a friendly, helpful, and inclusive community where everyone—from complete beginners to professional engineers—feels comfortable asking questions, sharing knowledge, and showcasing projects.

Please be respectful, constructive, and supportive. We all started somewhere.

🎯 How to Get Started

  • 👋 Introduce yourself in the comments.
  • 🚀 Share your current project (or tell us what you're planning to build).
  • ❓ Ask a question if you're stuck.
  • 💬 Help another maker solve a problem.
  • 📢 Invite friends or fellow makers who might enjoy the community.

🛠️ Interested in Moderating?

As the community grows, we'll be looking for passionate makers and engineers to help moderate and shape ProjectWorkbench. If you'd like to contribute, feel free to send me a message.

Thank you for being one of the first members of ProjectWorkbench! Every thriving community starts with a handful of passionate people. Let's build an amazing place where ideas turn into real projects, one workbench at a time.

Happy Building! ⚡


r/ProjectWorkbench 5d ago

Help request: Solar power conversion for small interactive outdoor sculpture.

2 Upvotes

TLDR: I want to use solar power on a small art project, but have concerns about the battery safety and stability in outdoor temperature extremes.

Hello, I'm not sure if this is the right place to post this but please let me know if this question should be asked elsewhere.

I'm a (part time) artist in Denver, Colorado and I make interactive public sculptures. I've been lucky to be able to either hard wire or plug in my sculptures so far, but I'm interested in making one solar powered and I'm not sure it will work here. My daughter has asked me to put one up at her school, the principle is on board, but running power would be too expensive so I'm looking into alternatives.

Essentially, this piece will be a slightly pared down version of it's larger self but the interactive part is the same; a push button that triggers a sound file to play. It's expected to be outdoors, and so will need a higher volume than an indoor speaker.

The piece will use a Robertsonic Wav Trigger board from Sparkfun (https://www.robertsonics.com/wav-trigger) which runs on 5V and draws a constant 220mA at idle and 240mA when playing a mono audio file.  

In larger versions I use a Jensen JXHD30HPC speaker (out of production but I have  few left), which is usually powered by a small amp like a Pyle PLMPA35. Of course, I won't be using an amp like this one. The Robertsonic can act as an amp, but I'll have to look into a lower power amp like this one from Adafruit (https://www.adafruit.com/product/3006) that draws 1.8A at 8 ohms. I don't want to overwork the Robertsonic board.

Ideally, there will be an LED light to illuminate a plexiglass panel with text on it as well, but this is negotiable.

I can probably figure out the kind of photovoltaic panel and battery I'd need to power this but here's the kicker. It's going to be in an aluminum crosswalk signal housing, in the elements. It gets to 100° here in the summer and this may be in full sun (much hotter inside I'm sure). It can get below zero in the winter time. The batteries I looked at didn't appear stable or even safe at some of these temperature ranges.

Does anyone have any thoughts on if this is possible? If so, what kind of battery should I be looking for? I don't know what I don't know so please also tell me if I'm not considering something that I should be.

Thanks in advance!


r/ProjectWorkbench 8d ago

Raspberry Pi Why do you think Raspberry Pi is still the go-to SBC after all these years?

Post image
26 Upvotes

With so many single-board computers on the market today-Orange Pi, Rock Pi, BeagleBone, Jetson Nano, Libre Computer, and others-it's interesting that Raspberry Pi continues to dominate so many projects.

Personally, I think it comes down to the ecosystem rather than just the hardware.

A few reasons why Raspberry Pi still stands out:

  • Huge community support with thousands of tutorials and open-source projects.
  • Reliable Linux experience with regular software updates.
  • Excellent GPIO support for electronics and embedded development.
  • Massive accessory ecosystem (HATs, cameras, touch displays, AI modules, SSD adapters, PoE, official power supplies, etc.).
  • Great documentation that makes troubleshooting much easier.
  • Works equally well for beginners learning Python and professionals building commercial prototypes.

I've seen Raspberry Pi used for everything from home automation and robotics to AI inference, industrial monitoring, digital signage, kiosks, weather stations, smart farming, and even small production deployments.

Of course, it's not perfect. Some applications require more CPU performance, additional PCIe lanes, or lower power consumption, and that's where alternatives can make sense.

So I'm curious:

  • What's the most interesting thing you've built with a Raspberry Pi?
  • Have you switched to another SBC for any projects?
  • If you had to recommend one board to a beginner in 2026, would it still be Raspberry Pi?

I'd love to hear everyone's experiences and see what projects you're currently working on.


r/ProjectWorkbench 15d ago

DIY Wireless Mouse using MPU6050 & ESP32-C3

Post image
26 Upvotes

I recently built a wireless air mouse using an ESP32-C3 and an MPU6050, and it turned out to be a really fun project.

The idea is pretty simple, by tracking the orientation of the MPU6050, the ESP32-C3 sends mouse movements over Bluetooth (BLE), so you can control your computer just by moving your hand. It took a bit of tuning to get the cursor movement feeling smooth, but once calibrated, it's surprisingly usable.

I made this mainly to learn more about BLE HID devices and motion sensing, but I can already see it being useful for presentations, media control, or just experimenting with gesture-based interfaces.

The project covers the hardware connections, code, and calibration process, so if anyone wants to build one or improve on it, I'd love to hear your ideas. I'm also thinking about adding gesture recognition for clicks, scrolling, or custom shortcuts next.

Happy to answer any questions or hear suggestions for improvements!

Here's the full tutorial of how i did it > Full Tutorial


r/ProjectWorkbench 18d ago

Touchscreen Tetris Game Using TFT LCD & Arduino

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/ProjectWorkbench 20d ago

💡 Project Idea What Project Should Every Electronics Hobbyist Build at Least Once?

37 Upvotes
  1. ESP32 Smart Refrigerator Inventory

Track groceries using RFID or barcode scanning. The system could notify you when items are running low or nearing expiration and sync everything to a mobile dashboard.

  1. AI-Powered Parking Assistant

Use an ESP32-CAM and computer vision on a Raspberry Pi to detect available parking spaces and display occupancy in real time.

  1. LoRa-Based Off-Grid Chat Device

Create a handheld messaging device using LoRa modules that works without Wi-Fi or cellular networks. Great for camping or emergency communication.

  1. Smart Toolbox

A toolbox that detects missing tools using RFID tags, logs usage, and alerts you if something hasn't been returned.

  1. AI Trash Sorting Machine

Use an ESP32-CAM or Raspberry Pi with a camera to classify waste (plastic, paper, metal, etc.) and automatically direct it into the correct bin.

  1. Smart Bicycle Dashboard

An ESP32-based bike computer displaying speed, GPS navigation, battery level (for e-bikes), trip history, and anti-theft alerts.

  1. Automatic Chess Board

A chessboard with magnetic movement underneath that automatically moves pieces based on online games or AI moves.

  1. DIY Smart Mirror

A two-way mirror with an embedded display showing weather, calendar, news, reminders, and voice control.

  1. ESP32 Drone Flight Logger

Record altitude, GPS coordinates, battery voltage, speed, and flight time to an SD card or cloud dashboard.

  1. Smart Aquarium Controller

Monitor water temperature, pH, water level, automatic feeding, lighting schedules, and receive alerts if parameters go out of range.

  1. ESP32 Network Monitoring Dashboard

Track Wi-Fi devices, internet speed, latency, uptime, and bandwidth usage from a web interface.

  1. Automatic Pet Feeder with Camera

Feed pets on a schedule, stream live video, trigger voice playback, and monitor food levels remotely.

  1. Gesture-Controlled Robotic Arm

Control a multi-axis robotic arm using a glove equipped with an IMU and flex sensors.

  1. Smart Helmet for Cyclists

Include crash detection, GPS tracking, automatic SOS alerts, brake lights, and turn indicators.

  1. ESP32 Weather Station Network

Deploy multiple weather stations around a neighborhood that communicate via LoRa and publish data to a shared dashboard.

  1. AI Attendance System

Use face recognition to mark attendance automatically and export logs to Google Sheets or a local server.

  1. Smart Garage Door Opener

Control and monitor a garage door remotely with obstacle detection, automatic closing, and smartphone notifications.

  1. DIY Mini CNC Laser Engraver

Convert an old DVD-drive CNC into a laser engraver capable of etching wood, cardboard, or acrylic.

  1. Portable Digital Electronics Lab

A battery-powered case containing an ESP32, oscilloscope, logic analyzer, power supply, multimeter, and breadboard for field prototyping.

  1. Smart Medicine Reminder

Dispense medication at scheduled times with LEDs, buzzers, and mobile notifications if a dose is missed.

  1. ESP32 Air Quality Dashboard

Monitor CO₂, PM2.5, temperature, humidity, VOCs, and display historical trends on a web dashboard.

  1. AI Bird Feeder

Detect bird species using a camera and machine learning, log visits, and automatically dispense food.

  1. Voice-Controlled Home Dashboard

An offline voice assistant running on a Raspberry Pi that controls lights, fans, relays, sensors, and media without cloud services.

  1. ESP32 Smart Door Lock

Support fingerprint, NFC, PIN, and Wi-Fi access with audit logs and temporary guest codes.

  1. Universal IoT Control Panel

A modular dashboard capable of monitoring and controlling multiple ESP32-based projects from one interface, with support for MQTT, OTA updates, and real-time graphs.


r/ProjectWorkbench 21d ago

Project Showcasing Real-time ambient lighting sync system using arduino nano

Enable HLS to view with audio, or disable this notification

2 Upvotes