Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Ved Parkash
Published

Mini Arduino

A cloned version of the DigiSpark, which is based on an ATtiny85 microcontroller.

IntermediateFull instructions provided3 hours840
Mini Arduino

Things used in this project

Story

Read more

Schematics

Circuit Diagram

Code

Blinking

C/C++
LED BLINKING
// Blinking Code for Digitstump
// Blink the builtin led int buitIn_led = 1;

void setup() {

// put your setup code here, to run once:

pinMode(buitIn_led,OUTPUT);

}

void loop() {

// put your main code here, to run repeatedly:

digitalWrite(buitIn_led,HIGH);

delay(1000);

digitalWrite(buitIn_led,LOW);

delay(2000);

}

Credits

Ved Parkash
6 projects • 1 follower
Contact

Comments

Please log in or sign up to comment.