I got a board on which ATTINY26 and the three-digit seven-segment indicator are already unsoldered. I want to write and debug a timer program or a voltmeter to the arduino IDE, export the binary file and upload it to the controller via a USBASP programmer. There are several ATTINY13. For them, too, I wanted to write something.

    1 answer 1

    In principle, it is possible. To do this, add a description of the microcontroller to the configuration file. With ATtiny, it will not be possible to fill the firmware into the microcontroller. To do this, you would need to pre-flash the bootloader via the ICSP.

    In addition, in order to use Arduino IDE functions such as digitalWrite() , analogRead() , etc., you will need to add microcontroller support to the header files. This is a bit more complicated than adding a microcontroller description to the configuration.