Turn table
Print Profile(1)

Description
đđ¸ Rotating Table for 3D Scans, Photography & More
This rotating platform is perfect for 3D scanning, product photography, and other creative uses. It provides smooth and consistent rotation for capturing objects from all angles.
The table is powered by an Arduino Uno, a 28BYJ-48 stepper motor, and its ULN2003 driver board. Simple electronics, reliable movement, and fully customizable for your own projects!
Designed for makers, photographers, and anyone who loves automation in their workflow.
Let me know how youâd use it or improve it!
List of supplies:
- Arduino Uno
- 28BYJ-48 stepper motor
- UNL2003 driver board
- 6 male to female cables or 6 cables in case u are going to solder it on.
- 10x M3 screws and nuts
- USB cable for the arduino
Code
A simple code for the arduino (this keeps turning)
#include <Stepper.h>
const int stepsPerRevolution = 2048; //steps for a full turn
Stepper myStepper = Stepper(stepsPerRevolution, 8, 10, 9, 11);
void setup()
{
}
void loop()
{
 myStepper.setSpeed(10);
 myStepper.step((stepsPerRevolution * 4.75)); //4.75 is to compensate for the gear ratio
}
Boost Me (for free)








Comment & Rating (7)