mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-01 19:26:20 +02:00
fix lib_deps in [env:node_mcu_v2] PR #101
This commit is contained in:
parent
f7b633aef7
commit
5b438d143a
2 changed files with 19 additions and 7 deletions
|
@ -15,11 +15,11 @@
|
|||
app::app() : Main() {
|
||||
DPRINTLN(DBG_VERBOSE, F("app::app():Main"));
|
||||
mSendTicker = 0xffff;
|
||||
mSendInterval = MIN_SEND_INTERVAL;
|
||||
mSendInterval = SEND_INTERVAL;
|
||||
mMqttTicker = 0xffff;
|
||||
mMqttInterval = MIN_MQTT_INTERVAL;
|
||||
mMqttInterval = MQTT_INTERVAL;
|
||||
mSerialTicker = 0xffff;
|
||||
mSerialInterval = MIN_SERIAL_INTERVAL;
|
||||
mSerialInterval = SERIAL_INTERVAL;
|
||||
mMqttActive = false;
|
||||
|
||||
mTicker = 0;
|
||||
|
|
|
@ -9,6 +9,19 @@ monitor_speed = 115200
|
|||
board_build.f_cpu = 80000000L
|
||||
;build_flags = -DDEBUG_ESP_PORT=Serial
|
||||
|
||||
lib_deps =
|
||||
nrf24/RF24@1.4.2
|
||||
paulstoffregen/Time@^1.6.1
|
||||
knolleary/PubSubClient@^2.8
|
||||
bblanchon/ArduinoJson@^6.19.4
|
||||
;esp8266/DNSServer@1.1.0
|
||||
;esp8266/EEPROM@^1.0
|
||||
;esp8266/ESP8266HTTPUpdateServer@^1.0
|
||||
;esp8266/ESP8266WebServer@^1.0
|
||||
;esp8266/ESP8266WiFi@^1.0
|
||||
;esp8266/SPI@1.0
|
||||
;esp8266/Ticker@^1.0
|
||||
|
||||
[env:node_mcu_v2]
|
||||
platform = espressif8266
|
||||
framework = arduino
|
||||
|
@ -17,9 +30,8 @@ monitor_speed = 115200
|
|||
board_build.f_cpu = 80000000L
|
||||
upload_port = /dev/ttyUSB0
|
||||
|
||||
|
||||
lib_deps =
|
||||
nrf24/RF24@1.4.2
|
||||
PubSubClient
|
||||
Time
|
||||
ArduinoJson
|
||||
paulstoffregen/Time@^1.6.1
|
||||
knolleary/PubSubClient@^2.8
|
||||
bblanchon/ArduinoJson@^6.19.4
|
||||
|
|
Loading…
Add table
Reference in a new issue