diff --git a/README.md b/README.md index 5025c31d..6d5b64d5 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Target platform must be selected in [platformio.ini](https://github.com/cyberman Hardware dependent settings (pinout etc.) are stored in board files in /hal directory.
3D printable cases can be found (and, if wanted so, ordered) on Thingiverse, see -Heltec, TTGOv2, TTGOv2.1 for example.
+Heltec, TTGOv2, TTGOv2.1, T-BEAM for example.
Power consumption was metered at around 750 - 1000mW, depending on board and user settings in paxcounter.conf. If you are limited on battery, you may want to save around 30% power by disabling bluetooth (commenting out line *#define BLECOUNTER* in paxcounter.conf). diff --git a/src/main.cpp b/src/main.cpp index 1b258f14..bd6d04f1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -330,6 +330,8 @@ void loop() { processSendBuffer(); // check send cycle and enqueue payload if cycle is expired sendPayload(); + // reset watchdog + vTaskDelay(1 / portTICK_PERIOD_MS); } // loop() }