-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplatformio.ini
41 lines (35 loc) · 1.07 KB
/
platformio.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[platformio]
env_default = hardware_v02
[common]
lib_deps =
AsyncMqttClient
ArduinoJson
WifiManager=https://github.com/tzapu/WiFiManager.git#development
Bounce2
Syslog=https://github.com/arcao/Syslog.git
HeatPump=https://github.com/dgoodlad/HeatPump.git#use-const-char-instead-of-strings
[env:hardware_v02]
;platform = https://github.com/platformio/platform-espressif8266.git#feature/stage
platform = espressif8266
board = huzzah
framework = arduino
;upload_speed = 115200
build_flags = -DHARDWARE_V02
lib_deps = ${common.lib_deps}
[env:hardware_v01]
platform = espressif8266
board = huzzah
framework = arduino
;upload_speed = 115200
build_flags = -DHARDWARE_V01
lib_deps = ${common.lib_deps}