Search found 3 matches
- Wed Aug 19, 2020 8:35 am
- Forum: ESP32 Arduino
- Topic: ESP32 Deep Sleep Not Powering Down
- Replies: 1
- Views: 1855
ESP32 Deep Sleep Not Powering Down
Hi all, I'd appreciate if someone could explain to me why my ESP32 module does not power down when in deep sleep mode? The ESP32 is connected to a battery shield like this: https://www.aliexpress.com/item/4000200690185.html?spm=a2g0o.productlist.0.0.709c5ec9d6RQ34&algo_pvid=71f88c45-aa34-40f1-9af7-8...
- Thu Aug 06, 2020 1:18 am
- Forum: ESP32 Arduino
- Topic: Photoresistor Interrupt Issue using ESP32
- Replies: 2
- Views: 2833
Re: Photoresistor Interrupt Issue using ESP32
@ESP_Sprite
Spot on, removing the analog read resolved the issue. Thank you!
Spot on, removing the analog read resolved the issue. Thank you!
- Wed Aug 05, 2020 8:18 am
- Forum: ESP32 Arduino
- Topic: Photoresistor Interrupt Issue using ESP32
- Replies: 2
- Views: 2833
Photoresistor Interrupt Issue using ESP32
Hi I cannot seem to figure out why the attachInterrupt is not working. I read from the sensor fine, however the ISR is not called. //cosntants for the pins where sensors are plugged into. const int sensorPin = 2; //Set up some global variables for the light level an initial value. int lightInit; // ...