Search found 3 matches
- Sat Feb 28, 2026 2:27 pm
- Forum: Hardware
- Topic: Suitability of Esp32 for rapid deployment projects
- Replies: 2
- Views: 112
Suitability of Esp32 for rapid deployment projects
I write this with a heavy heart and disappointment. Having worked with Arduino for decades, a transition to Espressif seemed natural. My first ESP project was a weather station using the Esp32 devkit and some specialized sensors using an odd collection of communication protocols. I needed a serial ...
- Fri Feb 06, 2026 11:13 am
- Forum: ESP32 Arduino
- Topic: ESP32 Interrupt stops working while loop() code executes
- Replies: 3
- Views: 535
Re: ESP32 Interrupt stops working while loop() code executes
In the called function, the controller asks for keyboard input to specify the month and year for which data are extracted.
I am fairly certain it is the serial input (a virtual keyboard) that is not interrupted. The input is dependent on:
on BTPort,available() which looks like it cannot be ...
I am fairly certain it is the serial input (a virtual keyboard) that is not interrupted. The input is dependent on:
on BTPort,available() which looks like it cannot be ...
- Fri Feb 06, 2026 10:25 am
- Forum: ESP32 Arduino
- Topic: ESP32 Interrupt stops working while loop() code executes
- Replies: 3
- Views: 535
ESP32 Interrupt stops working while loop() code executes
I use a ESP32 WROOM Devkit board using Arduino. The ESP32 is connected to a DS3231 RTC that interrupts the ESP once per second. However, if any procedure is called from the loop(), then the interrupt stops until the procedure has been completed. I am not sure if this is a coding problem or whether ...