forked from cyberman54/ESP32-Paxcounter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Klaus K Wilting
committed
Jun 20, 2020
1 parent
c51a45c
commit 6b785fe
Showing
5 changed files
with
109 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
|
||
; ---> SELECT THE TARGET PLATFORM HERE! <--- | ||
[board] | ||
halfile = generic.h | ||
;halfile = generic.h | ||
;halfile = ebox.h | ||
;halfile = eboxtube.h | ||
;halfile = ecopower.h | ||
|
@@ -33,28 +33,28 @@ halfile = generic.h | |
;halfile = tinypicomatrix.h | ||
;halfile = m5core.h | ||
;halfile = m5fire.h | ||
;halfile = olimexpoeiso.h | ||
halfile = olimexpoeiso.h | ||
|
||
[platformio] | ||
; upload firmware to board with usb cable | ||
default_envs = usb | ||
;default_envs = usb | ||
; upload firmware to a jfrog bintray repository | ||
;default_envs = ota | ||
; use latest versions of libraries | ||
;default_envs = dev | ||
default_envs = dev | ||
description = Paxcounter is a device for metering passenger flows in realtime. It counts how many mobile devices are around. | ||
|
||
[common] | ||
; for release_version use max. 10 chars total, use any decimal format like "a.b.c" | ||
release_version = 1.9.996 | ||
; DEBUG LEVEL: For production run set to 0, otherwise device will leak RAM while running! | ||
; 0=None, 1=Error, 2=Warn, 3=Info, 4=Debug, 5=Verbose | ||
debug_level = 3 | ||
debug_level = 4 | ||
extra_scripts = pre:build.py | ||
otakeyfile = ota.conf | ||
lorakeyfile = loraconf.h | ||
lmicconfigfile = lmic_config.h | ||
platform_espressif32 = [email protected].2 | ||
platform_espressif32 = [email protected].4 | ||
monitor_speed = 115200 | ||
upload_speed = 115200 ; set by build.py and taken from hal file | ||
display_library = ; set by build.py and taken from hal file | ||
|
@@ -79,13 +79,13 @@ lib_deps_sensors = | |
BSEC Software [email protected] | ||
https://github.com/ricki-z/SDS011.git | ||
lib_deps_basic = | ||
ArduinoJson@^5.13.1 | ||
ArduinoJson@<6 | ||
76@>=1.2.4 ; #76 Timezone by Jack Christensen | ||
274@>=2.3.4 ; #274 RTC by Michael Miller | ||
SimpleButton | ||
AXP202X_Library@>=1.1.1 ; AXP202 PMU lib by Lewis He | ||
esp32-micro-sdcard | ||
PubSubClient@>=2.8.0 | ||
MQTT@>=2.4.7 ; MQTT client maintained by Joel Gaehwiler | ||
lib_deps_all = | ||
${common.lib_deps_basic} | ||
${common.lib_deps_lora} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters