- Attiny85
- Tiny AVR Programmer, you could buy one from this website
-
You could connect Attiny85 to a Tiny AVR Programmer according to this website
-
You need to install platformio before using the code. However, it is easier to change the code to compatiable with Arduino IDE. The configuration for Attiny85 is:
[env:attiny]
platform = atmelavr
framework = arduino
upload_protocol = usbtiny
board = attiny85
- You can use:
make (all): to compile the firmware
make upload: to upload to your device
make clean: clean the project
make update: to update all the libraries
Or you could use Visual Studio Code to compile and upload it.
MIT