Neewer Motorized Slider mounting

Neewer Motorized Slider mounting

thingiverse

Arduino Controlled motorized slider for a DSLR with a neewer Slider. Node mcu - ArduinoCC code: /* Stepper Motor Control - one turn */ #include <Stepper2.h> const int rpm = 3; // max rpm on 28BYJ-48 is ~15 int pinOut[4] = { D1, D2, D5, D6 }; Stepper2 myStepper(pinOut); void setup() { Serial.begin(115200); myStepper.setSpeed(rpm); } void loop() { Serial.println("start"); myStepper.setDirection(0); // clock-wise myStepper.turn(12); // eleven full turns myStepper.stop(); myStepper.setDirection(1); // counter-clock-wise myStepper.turn(12); // eleven full turns myStepper.stop(); delay(60 * 1000); } I used a small stepper motor, and a drive belt from my anet, to drive the mount

Download Model from thingiverse

With this file you will be able to print Neewer Motorized Slider mounting with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on Neewer Motorized Slider mounting.