Arnov Sharma
Published © MIT

Antique Lantern Project

An existing Oil Candle Lantern was upgraded by adding a Custom Board with LEDs based on the Attiny13 architecture.

BeginnerFull instructions provided2 hours111
Antique Lantern Project

Things used in this project

Hardware components

Microchip attiny13
×1
PCBWay Custom PCB
PCBWay Custom PCB
×1
Arduino Nano R3
Arduino Nano R3
×1

Software apps and online services

Fusion
Autodesk Fusion
Arduino IDE
Arduino IDE

Story

Read more

Custom parts and enclosures

body

Schematics

sch

Code

code

C/C++
int pinsCount=4;                        // declaring the integer variable pinsCount
int pins[] = {0,1,2,3};          // declaring the array pins[]


void setup() {

  pinMode(0, OUTPUT);
  pinMode(1, OUTPUT);
  pinMode(2, OUTPUT);
  pinMode(3, 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(50);                          // 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(50);                          // stopping the program for 100 milliseconds
    digitalWrite(pins[i], LOW);          // switching the LED at index i off
  }

}

Credits

Arnov Sharma
329 projects • 334 followers
Just your average MAKER
Contact

Comments

Please log in or sign up to comment.