Ved Parkash
Published

Mini Arduino

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

IntermediateFull instructions provided3 hours833
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

Ved Parkash

6 projects • 1 follower

Comments