I want to upload code using an Arduino to an ATtiny828, is this possible?
I saw on YouTube you can upload code to an ATtiny85.
Thank you in advance. I want to use this for a PCB design that implements a sequential LED light.
I want to upload code using an Arduino to an ATtiny828, is this possible?
I saw on YouTube you can upload code to an ATtiny85.
Thank you in advance. I want to use this for a PCB design that implements a sequential LED light.
ATtiny828 can use casual SPI programming interface. So yes, you can flash sketch named ArduinoISP to your Arduino board and later use avrdude software (or some sort of GUI for it, there are many) to program ATtiny828 target with it.
You can even use this Arduino core, which supports ATtiny828, to program your ATtiny828 target from Arduino IDE. You need to install that core in your Arduino IDE, and flash a bootloader via ArduinoISP. Then you can write Arduino sketches for ATtiny828 and program it via UART bootloader (you will need a some sort of USB-UART converter for it). But this is optional.