Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Mission Critical
Published © CC BY-NC-SA

How to Set Up DigiSprak ATtiny85 Board

The ATtiny85 is bascially an alternative to Arduino for small projects where cost and size are a concern. ATtiny85 easily replaces it there!

BeginnerProtip30 minutes3,335
How to Set Up DigiSprak ATtiny85 Board

Things used in this project

Hardware components

Digispark Attiny 85 Module
×1
LED (generic)
LED (generic)
×1
Jumper wires (generic)
Jumper wires (generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Code

BlinkCode.ino

Arduino
Error opening file.

Code snippet #1

Plain text
<p>/* Blink Code by Akshay Momaya<br> * for Mission Critical Channel 
 * ATTINY85 Tutorial for <Mission Critical><mission critical="">
 *  subscribe for more arduino Tuorials and Projects
<a href="https://www.youtube.com/channel/UCM6rbuieQBBLFsxszWA85AQ?sub_confirmation=1">
https://www.youtube.com/channel/UCM6rbuieQBBLFsxs...</a>
 */</mission></p><p>void setup()
 {
  pinMode(1, OUTPUT);
 }</p><p>void loop()
 {
  digitalWrite(1, HIGH);   
  delay(1000);                      
  digitalWrite(1, LOW);    
  delay(1000);              
 }

</p>

Credits

Mission Critical
35 projects • 66 followers
Hello Geeks, Mission Critical is an Electronics Based Channel on YouTube
Contact

Comments

Please log in or sign up to comment.