Skip to main content
Filter by
Sorted by
Tagged with
1 vote
2 answers
156 views

I'm trying to read an SSID using preferences.h but getting a compile time error which doesn't seem to make sense to me. According to the Arduino docs, preferences.getString() can return either a char* ...
Fat Monk's user avatar
  • 2,275
0 votes
0 answers
78 views

I want to connect my xiao esp32 sense board to my phone using my own app to get camera picture. I tried bluetooth only, it work. But if i add camera support i cannot see the board. I tested on "...
sulianoar's user avatar
1 vote
1 answer
119 views

I want to generate two signals on the DAC outputs of ESP32, the sine and cosine ones. But I have no signal on the DAC outputs. Please, do not offer answers for the Cosine Wave Output mode (Cosine Mode)...
Andrei Krivoshei's user avatar
0 votes
1 answer
95 views

Using a ESP32 BLE connected to Arduino IDE, I'm now trying to Get Notification Attributes by sending command to Control Point of Apple Notification Center Service (ANCS). This is the code static void ...
Đức Thanh Nguyễn's user avatar
2 votes
0 answers
87 views

I'm struggling with an ESP32 library. As premise, the ESP32 module I'm using has a 2 MB PSRAM on-board. I wrote a test code to verify it's working: void setup() { Serial.begin(115200); while (!...
Mark's user avatar
  • 5,355
0 votes
0 answers
248 views

I'm working on a project where I need to capture audio data from an INMP441 microphone on an ESP32, encode it as Base64, and send it over a WebSocket to a Node.js server for transcription using Google ...
michael lai's user avatar
1 vote
0 answers
297 views

I’m working on interfacing a ZTW523A touch controller with an ESP32 via I2C, but I’m facing issues with I2C timeouts (Wire.h error 5: timeout) and I am unable to detect the device using an I2C scanner....
ChrisM's user avatar
  • 11
0 votes
1 answer
64 views

My objective is to turn on my microcontroller (esp32-devkit-v1) and have it reconnect to the last wifi it was connected to prior to being turned off. If that SSID isn't in range, scan for new ones and ...
Eduardo Isla Venegas's user avatar
1 vote
1 answer
126 views

Apologies for the length of this thread. Essentially, I've managed to set up an active connection between my ESP32 and a local XAMPP server. This server stores a captured image from the ESP32, which ...
Kingwebbie001's user avatar
0 votes
0 answers
132 views

Hardware: ESP32-C3-DevKitM-1 IDE: Arduino IDE OS: Windows 11 Issue: When I run ESP32C3 Dev Module example project RMakerSwitch and RMakerCustom, it shows the following error. It's an example code, why ...
Steven Wang's user avatar
0 votes
1 answer
483 views

I have two ESP32 boards connected back to back through a serial cable, using pin 16 for Rx and 17 for Tx. They exchange simple hello world messages through the serial2 hardware port on the ESP32. The ...
Raja's user avatar
  • 1,319
0 votes
2 answers
320 views

We upgraded our custom PCB to ESP32-S3 and thus I am upgrading my firmware too. Unfortunately, the BLE connecting to it, I got a crash in the BTC_TASK (See below for extended information) By looking ...
Stéphane de Luca's user avatar
1 vote
0 answers
218 views

I'm trying to display graphics using tft_espi while doing wifi stuff, but it seems that turning on the wifi module causes display updates to cease working. I've tried rewriting the code using FreeRTOS ...
Zico's user avatar
  • 255
0 votes
0 answers
72 views

It is advertised/part of the defined parameter list that esp_deep_sleep takes in a uint64_t as a parameter, representing the amount of microseconds to sleep the ESP32, however I believe this is a bug. ...
reZach's user avatar
  • 9,569
0 votes
0 answers
79 views

I am doing a project where I need to measure small differences in weight (like 0.01g differences). Right now I am using this load cell (with 300g of max capacity), with this HX711 amplifier and this ...
Francisca Lima's user avatar
0 votes
0 answers
88 views

I programmed an ESP32 as an I2C slave. I was using arduino IDE to program the ESP32 and the version installed in the boards manager is 2.0.17. When I tested it with a master, the data order was ...
Umer's user avatar
  • 588
0 votes
0 answers
157 views

After submitting the values in web server,the wifi will turn into OFF state.After that im getting this error.This error causes esp32 starts rebooting and starts running from beginning of program Tried:...
Charan kalidindi's user avatar
1 vote
0 answers
459 views

I'm trying to build a sketch in Arduino IDE with LittleFS to work on my ESP32-S3. and got an error about corrupted LittleFS My code: #include <EEPROM.h> #include <DNSServer.h> #include <...
Mamedov_A.'s user avatar
0 votes
0 answers
221 views

I'm trying to make a module that both works with WiFi and SIM7600 module. The module receives a long (~300 KB) JSON file from an HTTPS server and saves it to flash memory. The function that works with ...
Barkın Sarıkartal's user avatar
0 votes
1 answer
64 views

I dont understand why this is not working... will try to explain the best I can: in main I need an object of class Sim800Cls. Sim800Cls on the other hand, needs an object of class Prueba. both ...
patsy2k's user avatar
  • 745
0 votes
1 answer
113 views

I have this code: #include <Arduino.h> #include "esp_timer.h" //volatile int iCounter; <-- Uncommenting this line makes iCounter update in myTestFn() class Test { public: ...
Michael Hanagan's user avatar
0 votes
0 answers
97 views

I hope you are all doing great. As the title says, I'm using an ESP32 and when I try to call the WiFi.begin method within a class's constructor, the ESP32 watchdog is triggered and reboots the device ...
Juan_David's user avatar
1 vote
1 answer
796 views

I need to see some feedback in my setup() code within Arduino framework, and am using a simple Serial.println(), but it never appears unless I add a delay. Sometimes even the Serial.println() in loop()...
AndrewCSP's user avatar
1 vote
1 answer
510 views

Environment ESP32-WROOM-32UE. I need to run WiFi.scanNetworks() asynchronously for my project. My sample code returns a list of discovered networks however the output during WiFi.scanComplete() does ...
Perthboy's user avatar
  • 327
0 votes
1 answer
86 views

Probem: Esp32-cam don't create access point after flashing, and repeats attempt connection code, because can't execute command "WiFi.softAP("ESP");". Does anyone know how to solve ...
Idea Softworks's user avatar

1
2
3 4 5
13