Search found 3 matches
- Fri Jan 12, 2018 9:09 pm
- Forum: General Discussion
- Topic: ESP32 bluetooth automatic paring faied problem
- Replies: 0
- Views: 2465
ESP32 bluetooth automatic paring faied problem
Hi, my andoird bluetooth mac adress is hard coded in esp32 file. I paired my andoird with esp32 bluetooth first time. (the esp32 device name is saved in the "paired devices" in my android tablet. Then next time, it will be automatically successfully paired. Then I delete the bluetooth device on my a...
- Wed Jan 10, 2018 7:42 pm
- Forum: General Discussion
- Topic: ESP32 HELP interrupt hanlder dead after DEEP SLEEP WAKE UP.
- Replies: 2
- Views: 3545
Re: ESP32 HELP interrupt hanlder dead after DEEP SLEEP WAKE UP.
Thanks, it worked.
- Mon Jan 08, 2018 6:39 pm
- Forum: General Discussion
- Topic: ESP32 HELP interrupt hanlder dead after DEEP SLEEP WAKE UP.
- Replies: 2
- Views: 3545
ESP32 HELP interrupt hanlder dead after DEEP SLEEP WAKE UP.
my sudo code: After Deep Sleep, handler function(static void handler(void *args) ) will never be executed even I triggered GPIO_INTR_POSEDGE. How to solve this? Thanks. static char tag[] = "test_intr"; static QueueHandle_t q1; int d1=0; static void handler(void *args) { d1++; } void ClearIII(void *p...