-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
132 lines (108 loc) · 3.19 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
; 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
[env:PowerSupplyACdimmer]
; Use for Dimmer with Power supply and D1 Mini on the board
platform = espressif8266
board = d1_mini
framework = arduino
board_build.filesystem = littlefs
monitor_speed = 115200
upload_speed = 921600
lib_deps =
me-no-dev/ESP Async WebServer
bblanchon/ArduinoJson@^6.17.3
knolleary/PubSubClient
alanswx/ESPAsyncWiFiManager
paulstoffregen/OneWire
milesburton/DallasTemperature
https://github.com/xlyric/RBDDimmer
; OTA
ayushsharma82/AsyncElegantOTA @ ^2.2.5
build_flags =
-D POWERSUPPLY
-D ROBOTDYN
-D WINDOWS
; -D LINUX
[env:StandAlone]
; Use for StandAlone Dimmer connected to D1 Mini.
platform = espressif8266
; board = nodemcuv2 or board = d1_mini
;board = nodemcuv2
board = d1_mini
framework = arduino
board_build.filesystem = littlefs
monitor_speed = 115200
;upload_speed = 115200
; for Lolin
upload_speed = 921600 ; for D1mini
lib_deps =
me-no-dev/ESP Async WebServer
bblanchon/ArduinoJson@^6.17.3
knolleary/PubSubClient
alanswx/ESPAsyncWiFiManager
paulstoffregen/OneWire
milesburton/DallasTemperature
https://github.com/xlyric/RBDDimmer
; OTA
ayushsharma82/AsyncElegantOTA @ ^2.2.5
build_flags =
-D STANDALONE
-D ROBOTDYN
-D WINDOWS
; -D LINUX
[env:SSR-JOTTA]
; Use for StandAlone Dimmer connected to D1 Mini.
platform = espressif8266
board = d1_mini
;board = nodemcuv2
framework = arduino
board_build.filesystem = littlefs
monitor_speed = 115200
;upload_speed = 115200 ; for Lolin
upload_speed = 921600 ; for D1mini
lib_deps =
me-no-dev/ESP Async WebServer
bblanchon/ArduinoJson@^6.17.3
knolleary/PubSubClient
alanswx/ESPAsyncWiFiManager
paulstoffregen/OneWire
milesburton/DallasTemperature
https://github.com/xlyric/RBDDimmer
; OTA
ayushsharma82/AsyncElegantOTA @ ^2.2.5
build_flags =
-D SSR
[env:POWERSUPPLY2022]
; NOT WORKING .... PB WITH ROBOTDYN PCB
; Use for Dimmer with Power supply and D1 Mini on the board and need TTL USB ( https://fr.aliexpress.com/item/1005003365062050.html )
platform = espressif8266
; board = nodemcuv2 or board = d1_mini
board = d1_mini
framework = arduino
board_build.filesystem = littlefs
monitor_speed = 115200
;upload_speed = 115200
; for Lolin
upload_speed = 921600 ; for D1mini
lib_deps =
me-no-dev/ESP Async WebServer
bblanchon/ArduinoJson@^6.17.3
knolleary/PubSubClient
alanswx/ESPAsyncWiFiManager
paulstoffregen/OneWire
milesburton/DallasTemperature
https://github.com/xlyric/RBDDimmer
;https://github.com/RobotDynOfficial/RBDDimmer
; OTA
ayushsharma82/AsyncElegantOTA @ ^2.2.5
build_flags =
-D POWERSUPPLY2022
-D WINDOWS
; -D LINUX