-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
72 lines (61 loc) · 1.53 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#
# Project Configuration File
#
# A detailed documentation with the EXAMPLES is located here:
# http://docs.platformio.org/en/latest/projectconf.html
#
# A sign `#` at the beginning of the line indicates a comment
# Comment lines are ignored.
# Simple and base environment
# [env:mybaseenv]
# platform = %INSTALLED_PLATFORM_NAME_HERE%
# framework =
# board =
#
# Automatic targets - enable auto-uploading
# targets = upload
[platformio]
env_default = SerialSolarWaterSensor
src_dir = examples
lib_extra_dirs = D:\Work\ArduinoLibraries
[global]
lib_deps =
git+https://github.com/marvinroger/homie-esp8266.git#develop
[env:complete]
platform = espressif8266
board = d1_mini
framework = arduino
src_filter = +<complete.cpp>
lib_deps = ${global.lib_deps}
[env:SerialSolarWaterSensor]
platform = espressif8266
board = d1_mini
framework = arduino
src_filter = +<SolarWaterSensor.cpp>
lib_deps = ${global.lib_deps}
[env:PulseCounter]
platform = espressif8266
board = d1_mini
framework = arduino
src_filter = +<PulseCounter.cpp>
lib_deps = ${global.lib_deps}
[env:PowerMeterModbus]
platform = espressif8266
board = d1_mini
framework = arduino
src_filter = +<PowerMeterModbus.cpp>
lib_deps = ${global.lib_deps}
[env:WaterNode-ota]
platform = espressif8266
board = d1_mini
framework = arduino
upload_port = 10.20.20.221
upload_flags = --auth=assugrin
src_filter = +<WaterNode.cpp>
lib_deps = ${global.lib_deps}
[env:WaterNode] 10.20.20.221
platform = espressif8266
board = d1_mini
framework = arduino
src_filter = +<WaterNode.cpp>
lib_deps = ${global.lib_deps}