-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplatformio.ini
82 lines (73 loc) · 2.31 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
[common]
platform_8266 = [email protected]
framework = arduino
build_flags = -lstdc++
lib_deps =
board_flash_mode = dout
[env:sonoff]
platform = ${common.platform_8266}
board = esp01_1m
framework = ${common.framework}
build_flags = ${common.build_flags} -DENABLE_SONOFF
lib_deps = ${common.lib_deps}
board_flash_mode = ${common.board_flash_mode}
[env:sonoff-button]
platform = ${common.platform_8266}
board = esp01_1m
framework = ${common.framework}
build_flags = ${common.build_flags} -DENABLE_SONOFF_BUTTON
lib_deps = ${common.lib_deps}
board_flash_mode = ${common.board_flash_mode}
[env:sonoff-switch]
platform = ${common.platform_8266}
board = esp01_1m
framework = ${common.framework}
build_flags = ${common.build_flags} -DENABLE_SONOFF_SWITCH
lib_deps = ${common.lib_deps}
board_flash_mode = ${common.board_flash_mode}
[env:sonoff-touch]
platform = ${common.platform_8266}
board = esp8285
framework = ${common.framework}
build_flags = ${common.build_flags} -DENABLE_SONOFF_TOUCH
lib_deps = ${common.lib_deps}
board_flash_mode = ${common.board_flash_mode}
[env:sonoff-pow]
platform = ${common.platform_8266}
board = esp01_1m
framework = ${common.framework}
build_flags = ${common.build_flags} -DENABLE_SONOFF_POW
lib_deps = ${common.lib_deps}
board_flash_mode = ${common.board_flash_mode}
[env:sonoff-s20]
platform = ${common.platform_8266}
board = esp01_1m
framework = ${common.framework}
build_flags = ${common.build_flags} -DENABLE_SONOFF_S20
lib_deps = ${common.lib_deps}
board_flash_mode = ${common.board_flash_mode}
[env:sonoff-touch-esp01]
platform = ${common.platform_8266}
board = esp01_1m
framework = ${common.framework}
build_flags = ${common.build_flags} -DENABLE_SONOFF_TOUCH_ESP01
lib_deps = ${common.lib_deps}
board_flash_mode = ${common.board_flash_mode}
[env:ewelink-touch-single]
platform = ${common.platform_8266}
board = esp01_1m
framework = ${common.framework}
build_flags = ${common.build_flags} -DENABLE_EWELINK_TOUCH_SINGLE
lib_deps = ${common.lib_deps}
board_flash_mode = ${common.board_flash_mode}
[env:ewelink-touch-double]
platform = ${common.platform_8266}
board = esp01_1m
framework = ${common.framework}
build_flags = ${common.build_flags} -DENABLE_EWELINK_TOUCH_DOUBLE
lib_deps = ${common.lib_deps}
board_flash_mode = ${common.board_flash_mode}