forked from Aircoookie/WLED
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio_override.ini
53 lines (48 loc) · 1.69 KB
/
platformio_override.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
[platformio]
default_envs = orange_vest, guppy, camp_sign, esp32_eth_dev
[technogecko]
common_build_flags =
-D WLED_DISABLE_ALEXA
-D WLED_DISABLE_BLYNK
-D WLED_DISABLE_HUESYNC
-D WLED_DISABLE_INFRARED
-D WLED_DISABLE_WEBSOCKETS
-D WLED_DISABLE_LOXONE
m5atom_flags = ${common.build_flags_esp32} -D LEDPIN=27 -D BTNPIN=39 ${technogecko.common_build_flags}
[env:orange_vest]
extends = env:m5atom
build_flags = ${technogecko.m5atom_flags}
-D WLED_RELEASE_NAME=orange_vest
; -D CLIENT_SSID="TechnoGecko"
; -D CLIENT_PASS="theshiniestlizard"
; set the number of LEDs
-D DEFAULT_LED_COUNT=144
; can be changed anyway runtime but increase if your vest actually works :<
; 25 for the matrix + 108 + 144 + 108
; set milliampere limit when using ESP pin to power leds
; -D ABL_MILLIAMPS_DEFAULT=850 # max amp can be set
; set the name of the module - make sure there is a quote-backslash-quote before the name and a backslash-quote-quote after the name
-D SERVERNAME="\"vest\""
[env:guppy]
extends = env:m5atom
build_flags = ${technogecko.m5atom_flags}
-D WLED_RELEASE_NAME=guppy
-D CLIENT_SSID="\"TechnoGecko\""
-D CLIENT_PASS="\"theshiniestlizard\""
-D SERVERNAME="\"guppy\""
[env:camp_sign]
extends = env:m5atom
build_flags = ${technogecko.m5atom_flags}
-D WLED_RELEASE_NAME=campsign
-D CLIENT_SSID="\"TechnoGecko\""
-D CLIENT_PASS="\"theshiniestlizard\""
-D SERVERNAME="\"campsign\""
[env:esp32_eth_dev]
extends = env:esp32_eth
build_flags = ${common.build_flags_esp32} ${technogecko.common_build_flags}
-D WLED_RELEASE_NAME=ESP32_Ethernet
-D WLED_USE_ETHERNET
-D RLYPIN=-1
-D BTNPIN=34
-D WLED_ETH_DEFAULT=2 # ESP32-POE pinout via ethernetBoards from WLED_ETH_ESP32_POE
-D SERVERNAME="\"esp32-poe\""