Fix compilation without a BUTTON_PIN definition

1.2-legacy
Garret Kelly 2020-09-08 15:22:49 -04:00
rodzic 170f0693c6
commit 48256d6e9e
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -284,8 +284,10 @@ esp_sleep_wakeup_cause_t doLightSleep(uint64_t sleepMsec) // FIXME, use a more r
assert(esp_light_sleep_start() == ESP_OK);
esp_sleep_wakeup_cause_t cause = esp_sleep_get_wakeup_cause();
#ifdef BUTTON_PIN
if (cause == ESP_SLEEP_WAKEUP_GPIO)
DEBUG_MSG("Exit light sleep gpio: btn=%d\n", !digitalRead(BUTTON_PIN));
#endif
return cause;
}