Guiye Perez Bongiovanni
Published © GPL3+

Phenakistoscope

First optical toy (1832), which allowed to reproduce the movement of an image. Here motorized and reproduced with Arduino.

BeginnerShowcase (no instructions)3,906
Phenakistoscope

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Stepper Motor Generic - 5V 1A
×1
Power Supply 5V 1A
×1
Adafruit Motorshield V1
×1

Software apps and online services

Arduino IDE
Arduino IDE
PDF Reader Generic

Hand tools and fabrication machines

Inkjet
Paper
Some wires

Story

Read more

Schematics

Phenakistoscope conexion

PDF with circles for print

You can print this PDF with the animate horses or create your owns animation

Code

Phenakistoscope

Arduino
// Phenakistoscope 

#include <AFMotor.h>

// Connect a stepper motor with 48 steps per revolution (7.5 degree)
// to motor port #2 (M3 and M4)
AF_Stepper motor(48, 2);

void setup() {
  Serial.begin(9600);          
  motor.setSpeed(48);   
}

void loop() {
  Serial.println("Double coil steps");
  motor.step(24, BACKWARD, DOUBLE);

}

Credits

Guiye Perez Bongiovanni
12 projects • 22 followers
Artist / Maker
Contact

Comments

Please log in or sign up to comment.