forked from awawa-dev/HyperSerialEsp8266
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
61 lines (55 loc) · 1.69 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
; 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 = SK6812_RGBW_COLD, SK6812_RGBW_NEUTRAL, WS281x_RGB, SPI_APA102_SK9822_HD107, SPI_WS2801
[env]
extra_scripts = pre:extra_script.py
test_port = COM7
test_speed = 921600
upload_speed = 921600
[env:SK6812_RGBW_COLD]
platform = espressif8266
board = d1_mini
framework = arduino
lib_deps = makuna/NeoPixelBus@^2.7.0
build_flags = -DNEOPIXEL_RGBW -DCOLD_WHITE -DSERIALCOM_SPEED=921600
custom_prog_version = SK6812_RGBW_COLD
[env:SK6812_RGBW_NEUTRAL]
platform = espressif8266
board = d1_mini
framework = arduino
lib_deps = makuna/NeoPixelBus@^2.7.0
build_flags = -DNEOPIXEL_RGBW -DSERIALCOM_SPEED=921600
custom_prog_version = SK6812_RGBW_NEUTRAL
test_ignore = *
[env:WS281x_RGB]
platform = espressif8266
board = d1_mini
framework = arduino
lib_deps = makuna/NeoPixelBus@^2.7.0
build_flags = -DNEOPIXEL_RGB -DSERIALCOM_SPEED=921600
custom_prog_version = WS281x_RGB
test_ignore = *
[env:SPI_APA102_SK9822_HD107]
platform = espressif8266
board = d1_mini
framework = arduino
lib_deps = makuna/NeoPixelBus@^2.7.0
build_flags = -DSPILED_APA102 -DSERIALCOM_SPEED=2000000
custom_prog_version = SPI_APA102_SK9822_HD107
test_ignore = *
[env:SPI_WS2801]
platform = espressif8266
board = d1_mini
framework = arduino
lib_deps = makuna/NeoPixelBus@^2.7.0
build_flags = -DSPILED_WS2801 -DSERIALCOM_SPEED=2000000
custom_prog_version = SPI_WS2801
test_ignore = *