Arnov SharmaMakerPals
Published © LGPL

Yet Another Badge, A Ghost Badge made from 555 Timer IC

well, what can I say, title explains everything, it's a 555 timer IC Based Blinky Board made from THT components.

BeginnerFull instructions provided1 hour493
Yet Another Badge, A Ghost Badge made from 555 Timer IC

Things used in this project

Story

Read more

Custom parts and enclosures

Gerber data for PCB

Schematics

sch

Code

code

C/C++
Code for Attiny Version
int pinsCount=2;                        // declaring the integer variable pinsCount
int pins[] = {0,1};          // declaring the array pins[]
void setup() {
pinMode(0, OUTPUT);
pinMode(1, OUTPUT);
}
void loop() {
for (int i=0; i<pinsCount; i=i+1){    // chasing right
digitalWrite(pins[i], HIGH);         // switching the LED at index i on
delay(70);                          // stopping the program for 100 milliseconds
digitalWrite(pins[i], LOW);          // switching the LED at index i off
}
for (int i=pinsCount-1; i>0; i=i-1){   // chasing left (except the outer leds)
digitalWrite(pins[i], HIGH);         // switching the LED at index i on
delay(70);                          // stopping the program for 100 milliseconds
digitalWrite(pins[i], LOW);          // switching the LED at index i off
}
}

Credits

Arnov Sharma

Arnov Sharma

269 projects • 275 followers
Just your average MAKER
MakerPals

MakerPals

6 projects • 4 followers
Maker from India. We always love electronics and innovations. Join us for any project!

Comments