From 475a38999afe96685c3f22c61f59899aaf7c07cc Mon Sep 17 00:00:00 2001 From: Verkehrsrot Date: Sat, 11 Aug 2018 20:01:07 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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). From 0318987a4e4b4a307b96874368ab70498ee7b74b Mon Sep 17 00:00:00 2001 From: Verkehrsrot Date: Sun, 12 Aug 2018 13:44:29 +0200 Subject: [PATCH 2/2] Bugfix main.cpp introduced with last commit --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) 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() }