Questions tagged [esp32]
A cheap and low-power microcontroller family using Tensilica Xtensa LX6 CPU cores with integrated WiFi and dual-mode bluetooth.
28 questions from the last 365 days
0
votes
0
answers
39
views
ESP32C6 + PN532 NFC Reader (HW-147C) SPI Communication Not Working - "Didn't find PN53x board"
I'm trying to get an NFC reader (PN532 module, HW-147C model) working with my ESP32C6 using SPI. I tried using multiple libraries (seeed-studio, Adafruit, and some on github, but nothing worked).
This ...
1
vote
1
answer
62
views
Missing data when communicating over UART
So I am working on an Arduino project and have trouble communicating over UART.
I have a SIM7600G-H 4G Module from Waveshare and hooked it up to an Arduino Nano ESP32. The connections are as follows:
...
0
votes
1
answer
39
views
Is there a c++ library for the GitHub API and Arduino compatible?
I'm logging some data using an ESP32 board, and I need the data logged to be uploaded from the ESP32 to one of my repositories on GitHub.
Are there any C++ libraries for the GitHub API compatible with ...
0
votes
2
answers
116
views
problem with scripts in Arduino Lab for MicroPython
I am trying to set up an Arduino Nano ESP32 so that I can code in MicroPython. I successfully installed Arduino Lab for MicroPython and flashed the firmware onto the device, but when I try to run the ...
-1
votes
1
answer
179
views
ESP32-S3 continuous reboot after flashing larger firmware
I’m facing a persistent reboot issue on one of my ESP32-S3 boards after flashing a larger firmware binary. Here’s a breakdown of the problem:
🔧 What’s Happening
After flashing my project (which ...
0
votes
1
answer
85
views
How to receive data from an Rasberry Pi on ESP32-Cam?
My use case is an ESP32-cam that serves two purposes:
HTTP feed (accessed by a Raspberry Pi 5 which processes stream and provides a response)
Servo Motor microcontroller: Receives response from ...
0
votes
2
answers
103
views
How does a sensor data move from physical layer to application layer
I have used Arduino IDE to program a IOT gateway using ESP32 and W5500 ethernet module to use them as a ethernet webserver.
I wanted to know for educational purpose, I know that sensor belong to ...
1
vote
1
answer
105
views
Connect ESP32-CAM to L293D
Disclaimer: I'm a programmer, not an electronics expert. I built this car using an Arduino Uno, and now I want to add a camera to it. I’ve tried researching online, but I couldn’t find much ...
1
vote
2
answers
99
views
Can't sync ESP32 with Blynk
I was trying to display the readings of my dht11 sensor on the Blynk dashboard but I am struggling a lot. A little help would be really appreciated.
#define BLYNK_PRINT Serial
/* Fill in information ...
0
votes
1
answer
67
views
Problem Parsing NWS Severe Weather Alert API using Arduino_JSON.h [closed]
I have been using Open Weather and Weather Undground APIs for some time. I recently learned the National Weather Service has an API for alerts. I can print out the raw data but not able to parse it. ...
0
votes
0
answers
623
views
ESP32 Upload Fails: “Failed to connect to ESP32: No serial data received” (Worked Previously)
I’m trying to upload code to my ESP32 board using the Arduino IDE, but I’m consistently getting the following error:
A fatal error occurred: Failed to connect to ESP32: No serial data received.
For ...
-1
votes
1
answer
210
views
Getting a WDT reset on ESP32
I have a project that uses a GY-53 BMP180 and ESP32.
Each time I connect ESP32 to USB after uploading, I get this error:
22:27:27.352 -> rst:0x8 (TG1WDT_SYS_RESET),boot:0x13 (...
0
votes
1
answer
114
views
ESP32 pressure sensor readings (RFP602)
I have two RFP602 sensors that I use.
One connected to GPIO2, the other to GPIO4, each connected to a 1Mohm resistance.
The sensor connected to GPIO2 reads the data how I want it, I have to press a ...
0
votes
2
answers
535
views
How can I provide a custom TLS CACert bundle with Arduino on ESP32?
With an ESP8266 it's pretty easy to pass a custom bundle; eg:
BearSSL::WiFiClientSecure client;
BearSSL::CertStore certStore;
int numCerts = certStore.initCertStore(FSTYPE, "/certs.idx", &...