Our Requirement :
Wakeup ESP when GPIO 34 is high or GPIO 35 is low -> ( (GPIO 34 == 1) || (GPIO 35 == 0) )
What We tried:
const int ext_wakeup_pin_1 = 34;
const uint64_t ext_wakeup_pin_1_mask = 1ULL << ext_wakeup_pin_1;
const int ext_wakeup_pin_2 = 35;
const uint64_t ext_wakeup_pin_2_mask ...
Search found 1 match
- Tue May 17, 2022 10:05 am
- Forum: Hardware
- Topic: ESP can not wakeup if we configure different logic level for different wakeup pin
- Replies: 0
- Views: 1035