Dante Roumega
Published © Apache-2.0

A Weird Arduino Powered Clock

I needed a weird clock to go along with the rest of the weird projects in my workshop.

BeginnerFull instructions provided3 hours17,284
A Weird Arduino Powered Clock

Things used in this project

Hardware components

Arduino Micro
Arduino Micro
Any microcontroller will do.
×1
Stepper Motor 28BYJ-48
Any stepper motor will do.
×1
ULN2003 Driver Board
Any stepper motor controller will do.
×1

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)
Hot glue gun (generic)
Hot glue gun (generic)

Story

Read more

Schematics

Arduino / Motor Controller

f89zec4iq2o4wsa_large_Q5YDUk4353.jpg

Code

Code snippet #1

Plain text
#includeStepperMotor motor(6,7,8,9);void setup(){
  Serial.begin(9600);
  motor.setStepDuration(1);
}void loop(){
  motor.step(-64);
  delay(600000);
}

Credits

Dante Roumega

Dante Roumega

14 projects • 175 followers
Im 19 and I love electrical engineering

Comments