-
Notifications
You must be signed in to change notification settings - Fork 1
/
platformio.ini
157 lines (149 loc) · 5.39 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
; 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 = esp12_local_fr
[env:esp12_release_fr]
build_flags = !python gitVersion.py -DXIOT_LANGUAGE=fr
platform = espressif8266@^2
board = esp12e
board_build.f_cpu = 160000000L
framework = arduino
monitor_speed = 115200
monitor_port = COM8
upload_port = COM8
lib_deps =
bblanchon/[email protected]
gmag11/[email protected]
paulstoffregen/Time@^1.6.1
waspinator/AccelStepper@^1.61
https://github.com/reivaxy/XUtils/archive/refs/tags/v1.1.tar.gz
https://github.com/reivaxy/XOLEDDisplay/archive/refs/tags/v1.0.tar.gz
https://github.com/reivaxy/XEEPROMConfig/archive/refs/tags/v0.1.tar.gz
https://github.com/reivaxy/XIOTModule/archive/refs/tags/v2.2.tar.gz
https://github.com/reivaxy/XIOTConfig/archive/refs/tags/v2.0.tar.gz
https://github.com/reivaxy/XIOTDisplay/archive/refs/tags/v0.1.tar.gz
thingpulse/ESP8266 and ESP32 OLED driver for SSD1306 displays@^4.3.0
[env:esp12_release_no_ir_fr]
build_flags = !python gitVersion.py -DXIOT_LANGUAGE=fr -DNO_IR
platform = espressif8266@^2
board = esp12e
board_build.f_cpu = 160000000L
framework = arduino
monitor_speed = 115200
monitor_port = COM4
upload_port = COM4
lib_deps =
bblanchon/[email protected]
gmag11/[email protected]
paulstoffregen/Time@^1.6.1
waspinator/AccelStepper@^1.61
https://github.com/reivaxy/XUtils/archive/refs/tags/v1.1.tar.gz
https://github.com/reivaxy/XOLEDDisplay/archive/refs/tags/v1.0.tar.gz
https://github.com/reivaxy/XEEPROMConfig/archive/refs/tags/v0.1.tar.gz
https://github.com/reivaxy/XIOTModule/archive/refs/tags/v2.2.tar.gz
https://github.com/reivaxy/XIOTConfig/archive/refs/tags/v2.0.tar.gz
https://github.com/reivaxy/XIOTDisplay/archive/refs/tags/v0.1.tar.gz
thingpulse/ESP8266 and ESP32 OLED driver for SSD1306 displays@^4.3.0
[env:esp12_release_en]
build_flags = !python gitVersion.py -DXIOT_LANGUAGE=en
platform = espressif8266@^2
board = esp12e
board_build.f_cpu = 160000000L
framework = arduino
monitor_speed = 115200
monitor_port = COM6
upload_port = COM6
lib_deps =
bblanchon/[email protected]
gmag11/[email protected]
paulstoffregen/Time@^1.6.1
waspinator/AccelStepper@^1.61
https://github.com/reivaxy/XUtils/archive/refs/tags/v1.1.tar.gz
https://github.com/reivaxy/XOLEDDisplay/archive/refs/tags/v1.0.tar.gz
https://github.com/reivaxy/XEEPROMConfig/archive/refs/tags/v0.1.tar.gz
https://github.com/reivaxy/XIOTModule/archive/refs/tags/v2.2.tar.gz
https://github.com/reivaxy/XIOTConfig/archive/refs/tags/v2.0.tar.gz
https://github.com/reivaxy/XIOTDisplay/archive/refs/tags/v0.1.tar.gz
thingpulse/ESP8266 and ESP32 OLED driver for SSD1306 displays@^4.3.0
[env:esp12_local_fr]
build_flags = !python gitVersion.py -DXIOT_LANGUAGE=fr
platform = espressif8266@^2
board = esp12e
board_build.f_cpu = 160000000L
framework = arduino
monitor_filters = esp8266_exception_decoder
monitor_speed = 115200
monitor_port = COM8
upload_port = COM8
lib_extra_dirs = F:\DEV\arduino\libraries
lib_deps =
bblanchon/[email protected]
gmag11/[email protected]
paulstoffregen/Time@^1.6.1
waspinator/AccelStepper@^1.61
https://github.com/reivaxy/XEEPROMConfig/archive/refs/tags/v0.1.tar.gz
thingpulse/ESP8266 and ESP32 OLED driver for SSD1306 displays@^4.3.0
[env:esp12_local_fr_debug]
build_flags = !python gitVersion.py -DXIOT_LANGUAGE=fr -DDEBUG_XIOTMODULE=1
platform = espressif8266@^2
board = esp12e
board_build.f_cpu = 160000000L
framework = arduino
build_type = debug
monitor_filters = esp8266_exception_decoder
monitor_speed = 115200
monitor_port = COM4
upload_port = COM4
lib_extra_dirs = F:\DEV\arduino\libraries
lib_deps =
bblanchon/[email protected]
gmag11/[email protected]
paulstoffregen/Time@^1.6.1
waspinator/AccelStepper@^1.61
https://github.com/reivaxy/XEEPROMConfig/archive/refs/tags/v0.1.tar.gz
thingpulse/ESP8266 and ESP32 OLED driver for SSD1306 displays@^4.3.0
[env:esp12_local_fr_debug_SSL]
build_flags = !python gitVersion.py -DXIOT_LANGUAGE=fr -DDEBUG_ESP_SSL -DDEBUG_ESP_PORT=Serial
platform = espressif8266@^2
board = esp12e
board_build.f_cpu = 160000000L
framework = arduino
build_type = debug
monitor_filters = esp8266_exception_decoder
monitor_speed = 115200
monitor_port = COM4
upload_port = COM4
lib_extra_dirs = F:\DEV\arduino\libraries
lib_deps =
bblanchon/[email protected]
gmag11/[email protected]
paulstoffregen/Time@^1.6.1
waspinator/AccelStepper@^1.61
https://github.com/reivaxy/XEEPROMConfig/archive/refs/tags/v0.1.tar.gz
thingpulse/ESP8266 and ESP32 OLED driver for SSD1306 displays@^4.3.0
[env:esp12_local_fr_debug_full]
build_flags = !python gitVersion.py -DXIOT_LANGUAGE=fr -DDEBUG_XIOTMODULE=1 -DDEBUG_XIOTMODULE_MEM=1
platform = espressif8266@^2
board = esp12e
board_build.f_cpu = 160000000L
framework = arduino
build_type = debug
monitor_filters = esp8266_exception_decoder
monitor_speed = 115200
monitor_port = COM4
upload_port = COM4
lib_extra_dirs = F:\DEV\arduino\libraries
lib_deps =
bblanchon/[email protected]
gmag11/[email protected]
paulstoffregen/Time@^1.6.1
waspinator/AccelStepper@^1.61
https://github.com/reivaxy/XEEPROMConfig/archive/refs/tags/v0.1.tar.gz
thingpulse/ESP8266 and ESP32 OLED driver for SSD1306 displays@^4.3.0