From 08926c507d1c178a5be6d4870df145f70cee9403 Mon Sep 17 00:00:00 2001 From: Klaus K Wilting Date: Mon, 28 Jan 2019 14:21:00 +0100 Subject: [PATCH] one more 3D case link added to readme.md --- README.md | 11 ++++++++--- platformio.ini | 4 ++-- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5aafe240..0520712f 100644 --- a/README.md +++ b/README.md @@ -55,9 +55,14 @@ Depending on board hardware following features are supported: Target platform must be selected in [platformio.ini](https://github.com/cyberman54/ESP32-Paxcounter/blob/master/platformio.ini).
Hardware dependent settings (pinout etc.) are stored in board files in /hal directory. If you want to use a ESP32 board which is not yet supported, use hal file generic.h and tailor pin mappings to your needs. Pull requests for new boards welcome.
-3D printable cases can be found (and, if wanted so, ordered) on Thingiverse, see -Heltec, TTGOv2, TTGOv2.1, T-BEAM, -T-BEAM parts for example.
+Some 3D printable cases can be found (and, if wanted so, ordered) on Thingiverse, see +Heltec, +TTGOv2, +TTGOv2.1, +TTGO +T-BEAM, +T-BEAM parts, +for example.
Power consumption was metered at around 450 - 1000mW, depending on board and user settings in paxcounter.conf. By default bluetooth sniffing is disabled (line *#define BLECOUNTER* in paxcounter.conf is commented out). Enabling bluetooth costs 30% more power + 30% flash storage for the software stack. Proof of concept showed that for passenger flow metering wifi sniffing shows better results than bluetooth sniffing. If you enable bluetooth be aware that this goes on expense of wifi sniffing results, because then wifi and bt stack must share the 2,4 GHz RF ressources of ESP32. If you need to sniff wifi and bt in parallel and need best possible results, use two boards - one for wifi only and one for bt only - and add counted results. diff --git a/platformio.ini b/platformio.ini index fc8bbdad..031ff7bb 100644 --- a/platformio.ini +++ b/platformio.ini @@ -6,7 +6,7 @@ ; ---> SELECT TARGET PLATFORM HERE! <--- [platformio] -env_default = generic +;env_default = generic ;env_default = ebox ;env_default = eboxtube ;env_default = heltec @@ -24,7 +24,7 @@ env_default = generic ;env_default = lolin32lora ;env_default = lolin32lite ;env_default = octopus32 -;env_default = ebox, eboxtube, heltec, ttgobeam, lopy4, lopy, ttgov21old, ttgov21new +env_default = ebox, eboxtube, heltec, ttgobeam, lopy4, lopy, ttgov21old, ttgov21new, ttgofox ; description = Paxcounter is a proof-of-concept ESP32 device for metering passenger flows in realtime. It counts how many mobile devices are around.