Skip to main content
Filter by
Sorted by
Tagged with
Best practices
0 votes
0 replies
23 views

It is almost a week that I'm trying to find a ready to use cloud solution for my IoT projects which mostly are based on ESP32 hardware. My Ideal is that I develop the embedded system with Arduino ...
AKTanara's user avatar
  • 260
-4 votes
1 answer
129 views

I have an ESP32-S3-N16R8 devkit board with two USB ports and I have a device that communicates via Serial USB. I want to read serial data from ESP32 board and process it. So the ESP32 board should act ...
Alex's user avatar
  • 67
1 vote
0 answers
89 views

I’m working on an ESP32 project that uses WiFiManager (https://github.com/tzapu/WiFiManager). The first connection works fine: when there are no saved credentials, the ESP32 starts an Access Point, I ...
nima's user avatar
  • 13
0 votes
0 answers
134 views

I am currently facing a problem that I run out of idea. I have a waveshare ESP32-S3-Touch-LCD-2 (https://www.waveshare.com/wiki/ESP32-S3-Touch-LCD-2) that features a display, SD cardslot and camera. ...
bennnil's user avatar
  • 35
0 votes
2 answers
111 views

I built a custom PCB with an ESP32-WROVER-IE-N8R8 to read a pressure difference in a filtration system. The data is then send via MQTT to a MQTT Broker (Mosquitto) on a Linux Server. This happens ...
ThoryF's user avatar
  • 11
2 votes
1 answer
98 views

When I've developed for the ESP32, I've always included the linker attribute IRAM_ATTR when I've declared functions called from interrupts. This is based on https://docs.espressif.com/projects/esp-idf/...
axlan's user avatar
  • 1,013
0 votes
1 answer
65 views

I have an ESP32C3 application based on platformio with secure boot enabled, i.e., after booting I read out the following information from the partition table: Partition Name: nvs Type: 0x01 - Subtype:...
Jens's user avatar
  • 6,518
0 votes
0 answers
81 views

ESP32, Arduino Framework, using these libraries: lib_deps= ESP32Async/AsyncTCP ESP32Async/ESPAsyncWebServer https://github.com/guestisp/ESP32AsyncDNSServer.git here the relevant code: #...
Mark's user avatar
  • 5,355
0 votes
1 answer
629 views

I hope someone can help we with some errors I get from the ESP-IDF Watchdog Timer functionality. What I'm trying to do I'm trying to use an ESP32-CAM to post messages on the Mastodon social network. ...
Ralph's user avatar
  • 23
0 votes
0 answers
51 views

I have troubles with a mysterious delay on ESP32s. It makes my project work incorrectly. For example, to exclude another reason, I show it on empty project. This is the code: loop() { Serial.print(&...
Tim Y's user avatar
  • 1
1 vote
1 answer
141 views

I am trying to get a hardware timer in an ESP32 to start and stop based on states in a FSM.I have read quite a few ESP32 Timer Howtos, and I am still not getting it to work. The timer functions ...
user1045680's user avatar
2 votes
0 answers
63 views

I am coding an RC car in the Arduino IDE. Here are the specs of what I use: Arduino Nano esp-32 Wifi protocol: esp-now Motor: AL-2835-10 The receiver and the sender are both the same Arduino and are ...
Timo's user avatar
  • 21
0 votes
0 answers
22 views

I'm currently getting an issue when sending data per frame, the last thing sent sometimes doesn't appear on the device. I have a feeling there might be something on the Arduino side of things that I ...
Darin Palermo's user avatar
0 votes
1 answer
194 views

like the title suggests, I am using an esp32 and want to output a mp3 file from an SD-card via the i2s-Amp MAX98357a. To begin with, I was trying to get an example from the library running, but it ...
Sera's user avatar
  • 1
1 vote
0 answers
40 views

I am trying to initialize and use the NittoBend's 2-axis Bending sensor with the ESP32 Feather (coded in Arduino IDE). I have the circuit setup correctly (GND to GND, VCC to 3.3V, nDRDY to GPIO 32, ...
user29732056's user avatar
2 votes
0 answers
92 views

I'm using platform IO for my project. When I define my characteristics, only the first one defined and added to the service will be displayed by nRF. I did the tests by swapping the two features and ...
Matteo's user avatar
  • 21
0 votes
0 answers
65 views

I'm using the Espressif Arduino BLE library on an ESP32C3. The ESP32 acts as a central device and connects to a peripheral Raspberry PI running Linux. I am attempting to send a relatively large amount ...
MrSomeone's user avatar
  • 182
0 votes
0 answers
32 views

This is the code I have written to connect my Xiao Seeed ESP32-S3 board to a mobile hotspot #include <WiFi.h> const char* ssid = "rrrr"; const char* password = "rrrrrrrr"; ...
RIDDHIDIPTA PAL's user avatar
0 votes
1 answer
250 views

I am trying to do a mini tank that is controlled by a webserver in my local WiFi (hosted by PC). I am fighting with one main problem - when camera stream is active websockets stops answering and after ...
KamilG's user avatar
  • 1
1 vote
1 answer
149 views

I need to write a code to send data via UART. I wrote a test code on Arduino IDE in a .ino file and it worked perfectly. Now I trying to shift the code to a .c file. My code is as follows: #include &...
Mobi Zaman's user avatar
1 vote
0 answers
323 views

I’m working on an ESP32 project using the Arduino IDE, and occasionally, the Serial Monitor displays garbled characters instead of the expected output. The baud rate in the Serial Monitor is set to ...
0xdeadbeef's user avatar
-1 votes
1 answer
94 views

I am trying to get an ESP32 (sender) to send a http get Request to a second esp32(receiver) via WiFi. For that i want the sender to be in WIFI_AP_STA mode and connect to the receiver (AP-Mode) and ...
Nils Haverkamp's user avatar
0 votes
0 answers
167 views

I’m trying to use an MQ2 gas sensor with my ESP32, but I’m having some issues. I've already done the preheating process for the MQ2 sensor, but the analog reading from the sensor always shows 0 in the ...
HannTu's user avatar
  • 1
0 votes
1 answer
96 views

I am using an ESP32-WROOM-32E with 2 MB PSRAM. If I comment out the begin of the vspi, the code will not crash. (Any help would really be appreciated!) vspi = new SPIClass(VSPI); vspi->setHwCs(...
Daniel Winsor's user avatar
0 votes
0 answers
107 views

I'm trying to make a small web server for my ESP32 using the Arduino environment. I would like to switch from Arduino's WebServer to ESP-IDF's esp_http_server because it has useful features like ...
Maxime's user avatar
  • 5

1
2 3 4 5
13