You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
773 B
31 lines
773 B
; 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:attiny85]
|
|
platform = atmelavr
|
|
board = attiny85
|
|
framework = arduino
|
|
lib_deps =
|
|
fastled/FastLED @ ^3.3.3
|
|
davidepalladino/Button-Arduino@^1.2.0
|
|
upload_protocol = custom
|
|
upload_flags =
|
|
-C
|
|
${platformio.packages_dir}/tool-avrdude/avrdude.conf
|
|
-p
|
|
t85
|
|
-Pusb
|
|
-c
|
|
usbasp
|
|
upload_command = avrdude $UPLOAD_FLAGS -U flash:w:$SOURCE:i
|
|
|
|
[platformio]
|
|
description = Animation a base de LED WS2812B et ATtiny85
|