-
Notifications
You must be signed in to change notification settings - Fork 3
/
platformio.ini
57 lines (54 loc) · 1.42 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
; 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]
default_envs = esp32dev
[env:esp32dev]
platform = espressif32
board = esp32dev
framework = arduino
lib_deps =
robtillaart/DS18B20@^0.1.14
bblanchon/ArduinoJson@6.21.5
https://github.com/Evgen2/AutoConnect@^1.4.3
https://github.com/Evgen2/arduino-home-assistant
build_flags =
-DCORE_DEBUG_LEVEL=0
; -DAC_DEBUG
monitor_speed = 115200
upload_port = COM[2]
monitor_port = COM[2]
monitor_filters = default, log2file
[env:nodemcuv2]
platform = espressif8266
board = nodemcuv2
framework = arduino
lib_deps =
robtillaart/DS18B20@^0.1.14
bblanchon/ArduinoJson@6.21.5
knolleary/PubSubClient@^2.8
https://github.com/Evgen2/AutoConnect@^1.4.3
https://github.com/Evgen2/arduino-home-assistant
build_flags =
-DB_NODEMSU
-DAUTOCONNECT_NOUSE_JSON
-DEX_ARDUINOHA_BUTTON
-DEX_ARDUINOHA_CAMERA
-DEX_ARDUINOHA_COVER
-DEX_ARDUINOHA_DEVICE_TRACKER
-DEX_ARDUINOHA_DEVICE_TRIGGER
-DEX_ARDUINOHA_FAN
-DEX_ARDUINOHA_LIGHT
-DEX_ARDUINOHA_LOCK
-DEX_ARDUINOHA_SCENE
-DEX_ARDUINOHA_SELECT
-DEX_ARDUINOHA_TAG_SCANNER
monitor_speed = 115200
upload_port = COM[9]
monitor_port = COM[9]