Patrick Fitzgerald
Published

Arduino IDE Upload Using External Programmer

We go through how to upload an Arduino sketch using an external programmer device. This project uses the USBTiny device.

AdvancedProtip1 hour721
Arduino IDE Upload Using External Programmer

Things used in this project

Hardware components

atmega minimal development board
×1
Adafruit usbtinyisp
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Code

count.ino

Arduino
Arduino Sketch that toggles all IO pins on PORTSB, C and D.
// toggle IOs on output ports
void setup()
  { /* DDRA=0xFF;*/ DDRB=0xFF;DDRC=0xFF;DDRD=0xFF;}  // all ports as output
void loop()
  { /* PORTA++;*/ PORTB++;PORTC++;PORTD++; delay(50); }  // binary count

Credits

Patrick Fitzgerald

Patrick Fitzgerald

117 projects • 39 followers

Comments