Last active
September 1, 2024 16:21
-
-
Save eduardomarcos/1c866371d215844b376e1e79033395de to your computer and use it in GitHub Desktop.
PlatformIO config for USBTiny Programmer Upload
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;For Arduino UNO | |
[env:uno] | |
platform = atmelavr | |
board = uno | |
framework = arduino | |
upload_protocol = usbtiny | |
upload_flags = -e | |
;For Esp32 | |
[env:esp32doit-devkit-v1] | |
platform = espressif32 | |
board = esp32doit-devkit-v1 | |
framework = arduino | |
monitor_speed = 115200 | |
;For Attiny85 | |
[env:attiny85] | |
platform = atmelavr | |
board = attiny85 | |
framework = arduino | |
upload_protocol = usbtiny | |
upload_flags = -e |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment