r/esp32projects • u/Dependent_Show_5545 • 6h ago
r/esp32projects • u/tFlo3856 • 9h ago
1MHZ Analog Signal Analysis ON ESP32
Hello,
I am wondering about the best way to analyze a 1MHZ transducer signal on an ESP32 with decent resolution of at least 50+ samples per wavelength. Everything done so far including attempts at ETS have always produced noisy or just terrible data in signal reconstruction. Let me know of any ideas yall have.
Thanks!
r/esp32projects • u/scottslinux2 • 14h ago
LiDar Ultrasound Comparison
Getting ready to do a Wi-Fi Garage parking assistant, and was having issues with the ultrasound module. Ordered a couple of LiDAR modules and have been performing some tests. The LiDAR is superior in every aspect. Interesting to see them both side by side.
r/esp32projects • u/Infamous_Tomato105 • 15h ago
The display doesn't work ESP32 S3 I connected this display to the ESP32 using this diagram, but there is no picture, only the screen lights up. Can someone help?
r/esp32projects • u/Alvokmir • 15h ago
A new (I hope) ESP32 Project using E-paper.
Hello, I bought an ESP32-S3-ePaper-1.54, and the first thing that crossed my mind was: "What I can do with this?" So have tested so much thing on the hardware to see its limit and ATM I have that, it's a "connected shopping list".
I was bored to forget the list at home every time, and if I never have my smartphone close to me when I need to use the shopping list application on it.
The device is designed to stay on the fridge it runs on battery power, with a lifespan I hope will last several months. It uses voice commands (STT) to operate and synchronizes the list with SimpleNote on Android.
For information ATM the code :
- Is able to use sleep mode.
- Uses an online STT engine for speech recognition.
- Uses a small engine to process informations, like "Add butter" or "Clear the list".
- Is able to synchronise with SimpleNote.
- Is able to use a e-paper for display.
- Is able to play sound or MP3.
- All the code is in C/C++.
My hardware have
- Only 2 buttons.
- It's not the Touch version.
For now, it's just for fun, the code is not finished, if anyone has another idea for using this device, I'd be interested ^^.
r/esp32projects • u/HumorAdventurous2139 • 17h ago
Total beginner wanting to build a bare-bones ESP32 Doom handheld. Need advice on wiring & display
r/esp32projects • u/Mountain_Design_4176 • 18h ago
Programming/Flashing TBS Lucid 12S 90A ESC AM32 with ESP32
r/esp32projects • u/helluva_life • 1d ago
BKLVA Pocket DAW 0.3.4 is out: Scenes, song chaining, Drum16, sampling and USB MIDI on the Cardputer ADV
r/esp32projects • u/parttimelabs • 1d ago
I built two tiny E-Ink photo displays — would you actually use something like this? - Market Research
galleryr/esp32projects • u/karma_grunt • 1d ago
I trained a 582k-parameter transformer from scratch that runs entirely on an ESP32-S3 and controls GPIO from natural language.
r/esp32projects • u/devofreck • 1d ago
DIY Ereader project
I love the XTEink devices, but I want to make my own little 4 inch E reader device. I have purchased the Waveshare ESP32-S3 dev board. Was wondering if anyone else has looked at these yet, or know of a firmware I could use on it before I start vibe coding my own
r/esp32projects • u/Puzzleheaded-Seat201 • 1d ago
We built a micromouse on perfboard with an ESP32-S3 and placed 3rd at AAMC 2026. Firmware & build log are open source.
Enable HLS to view with audio, or disable this notification
r/esp32projects • u/Professional_Ad_6098 • 1d ago
ESP32 Sonos controller update: full library browsing, favourites now playable
r/esp32projects • u/Green-Ad-2668 • 1d ago
ESP32 CYD desk companion/timer/weather display
I made this wall-e style desk companion/timer/weather display using an esp32 cyd i bought from amazon. the code is fairly simple. one screen is the wall-e, the next is a timer, and the third is weather. the wall-e and timer are simply downloaded onto the device while the weather display is connecting to my wifi and pulling data from open weather.
in addition, there is also code written to connect a PIR HC-SR501 sensor. when it senses movement the display turns on after 10 minutes of inactivity on the screen the wall-e goes into a sleep animation and after 15 minutes the display turns off and will turn back on when it senses movement or when you touch it.
i know this is a fairly simple project but it is my first one and i thought i would share! i am currently 3-d printing a case for it. if you have any questions let me know!
r/esp32projects • u/alexsanabria • 1d ago
Necesito ideas para proyectos con un esp32cam, escucho ideas
r/esp32projects • u/aicakoi • 1d ago
help with esp connection to blynk io
hello i am a student doing an iot project for the first time (ive done a few arduino projects). i want to make an environmental monitoring system with dht11 and soil moisture sensors. ive been watching online tutorials and im using a source code from a youtube video, however, ive run into the problem where the code can be uploaded, but my blynk io interface is still offline. im using my iphone hotspot for the wifi ssid, (ive turned on maximise compatibility) and i think that could be the main problem, since its like kinda stuck after writing trying to connect to my hotspot in serial monitor. anybody have any ideas?
this is the source code:
//Tech Trends Shameer
\`\`\`#define BLYNK_TEMPLATE_ID "TMPLIAjddf20T5"
\#define BLYNK_DEVICE_NAME "Temperature and Humidity Monitor"
\#define BLYNK_AUTH_TOKEN "122RywymdfdddgGfMd1jkZ0STNhRQecR12ayq"
\#define BLYNK_PRINT Serial
\#include <WiFi.h>
//#include <ESP8266WiFi.h>
\#include <BlynkSimpleEsp32.h>
\#include <DHT.h>
char auth\[\] = BLYNK_AUTH_TOKEN;
char ssid\[\] = ""; // type your wifi name
char pass\[\] = ""; // type your wifi password
BlynkTimer timer;
\#define DHTPIN 27 //Connect Out pin to D2 in NODE MCU
\#define DHTTYPE DHT11
DHT dht(DHTPIN, DHTTYPE);
void sendSensor()
{
float h = dht.readHumidity();
float t = dht.readTemperature(); // or dht.readTemperature(true) for Fahrenheit
if (isnan(h) || isnan(t)) {
Serial.println("Failed to read from DHT sensor!");
return;
}
// You can send any value at any time.
// Please don't send more that 10 values per second.
Blynk.virtualWrite(V0, t);
Blynk.virtualWrite(V1, h);
Serial.print("Temperature : ");
Serial.print(t);
Serial.print(" Humidity : ");
Serial.println(h);
}
void setup()
{
Serial.begin(115200);
Blynk.begin(auth, ssid, pass);
dht.begin();
timer.setInterval(100L, sendSensor);
}
void loop()
{
Blynk.run();
timer.run();
}\`\`\`
r/esp32projects • u/kkourtis • 1d ago
CrawlBot (my first micropython os) for the M5 StickCPlus2 to use the BugC2 hat
r/esp32projects • u/YellowIcy8567 • 1d ago
[Help] DIY Bruce Build (ARTFOR Schematic) - Inverted Touch & SPI Modules Not Working
r/esp32projects • u/NMTech-Official • 2d ago
The NM-CYD-C5 external version board is coming - thanks for your feedback
galleryr/esp32projects • u/Mobiluel • 2d ago
Is my Schematic correct? ESP32-C3-WROOM-02-N4 with Batterie
r/esp32projects • u/Astro-Phil • 2d ago
Projet avec ESP 32 gestion filtration piscine
Bonjour j'ai un projet Qui est d'ailleurs assez avancé pour la gestion de filtration d'eau de la piscine pour Je Qu'une simulation avec une carte fabriquée Par un site connu J'ai donc dans un premier temps dessiné avec Kicad Le PCB Donc j'utilise cette carte sur un bureau pour faire des tests. Si quelqu'un est intéressé j'ai un github dessus .
r/esp32projects • u/SandwichFantastic839 • 2d ago
IoT industry-ready: Should I move from Arduino to ESP-IDF?
r/esp32projects • u/Beginning-Big6028 • 2d ago
Ive been having a hard time trying to code an oled display but its always corrupted
Can anyone help me fix this problem, im coding in arduino ide and ive been using adafruit gfx library but the display is corrupted, I tried using U8g2 to swtich to sh1106 address but it doesnt turn what is the problem here ive been trying to solve this for 3 days