Arnov Sharma
Published © LGPL

Learn How to Program ATtiny85 and ATtiny13A

A simple tutorial on programming ATtiny microcontrollers with an Arduino Uno.

IntermediateProtip12 minutes24,733
Learn How to Program ATtiny85 and ATtiny13A

Things used in this project

Story

Read more

Schematics

sch

Code

code

C/C++
Blink for Attiny13 and 85 (connect led on pin 5 or D0)
void setup() {

  pinMode(0, OUTPUT);
}


void loop() {
  digitalWrite(0, HIGH);    
  delay(1000);                      
  digitalWrite(0, LOW);  
  delay(1000);                      
}

Credits

Arnov Sharma

Arnov Sharma

267 projects • 273 followers
Just your average MAKER

Comments