Unanswered Questions
790 questions with no upvoted or accepted answers
0
votes
0
answers
37
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
2
answers
43
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
2
answers
59
views
How can you trace out the short-term trajectory of a 6DOF IMU
I've looked and looked on forums, wrote prompt after prompt in DeepSeek and ChatGPT but I've hit a roadblock.
I'm currently working on a project where I want to write numbers in the air using a ...
0
votes
0
answers
100
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 ...
0
votes
0
answers
53
views
ESP8266 Not Booting Properly on First Power On – Works After Restart
I'm working on an ESP8266-based water level monitoring system using an ultrasonic sensor and an I2C LCD. The problem I'm facing is that sometimes the ESP8266 does not boot properly when powered on for ...
0
votes
1
answer
53
views
ESP32 Timers - Controller Crashes Above 240 kHz, Duty Cycle Becomes Unstable
I'm trying to generate three synchronized signals on ESP32 for a device that requires precise timing. However, when I increase the frequency above 240 kHz, the controller crashes, and the duty cycle ...
-1
votes
1
answer
67
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 (...
1
vote
1
answer
102
views
ESP32-S3 Does not read BME680 Data
I build a PCB using ESP32-S3-WROOM-1-N16R2 Controller. I programmed a BME680 sensor with this MCU. My pinouts are,
BME_SCK 38
BME_MISO 19
BME_MOSI 15
BME_CS 5
This is my Arduino code,
#include <...
1
vote
0
answers
87
views
"Stack canary watchpoint triggered (loopTask)" when synchronizing with Arduino Cloud IoT (ArduinoCloud.update())
I have created a sketch that updates 195 variables : 16xString variables, 34xfloat, 52xint, 107xbool.
Notice : I'm using the IDE tool instead of the included Cloud IoT compile (because I have a pb ...
0
votes
0
answers
25
views
ESP32 Bluetooth Pair scanFilter not working properly
I am trying to make a bluetooth device with esp32 s3. Pairing should work like a headfone. At the First start, any device can connect my ble ESP32 after connecting I will add in whitelist this device ...
0
votes
0
answers
49
views
Multiple esp32s running on batter power using ESP-NOW
I have a project where I'd like to have two esp32s communicate using ESP-NOW, but both running on battery. I'd like for both to be in deep sleep, wake up and communicate, and go back to sleep, repeat.
...
0
votes
0
answers
72
views
Get Hash from Biometric Fingerprint Data for Encryption
I'm trying to get a reliable hash from a fingerprint scanner to use as a encryption key. According to this post here: https://crypto.stackexchange.com/questions/103693/can-you-restore-a-private-key-...
1
vote
0
answers
148
views
ESP8266 (Mini D1) does not come back after deep sleep but NodeMCU does
Kind of desperate here. I tried every solution found on this forum / google and others.
My sketch works perfectly with a NodeMCU 1.0
The same script should work on a Lolin Mini D1, everything works ...
-1
votes
1
answer
133
views
How many FPS I can theoretically get for streaming frame from OV7670 with this setup?
Setup:
OV7670 -> STM32F103... --USART--> ESP01 --UDP--> Gateway --> Internet --> Server
I want to achieve a real-time streaming experience.
Here is my analysis:
According to the ...
3
votes
1
answer
165
views
Error trying to play audio through an ESP8266 using the 'ESP8266Audio' library
I am attempting to use an esp8266 to play an .mp3 audio file through a connected speaker using the 'ESP8266Audio' library.
I have tested that the hardware setup is correct (e.g. I have been able to ...