Stepper 28BYJ hull

Description

Very rough model of the stepper motor 28BYJ (http://www.instructables.com/id/BYJ48-Stepper-Motor/). Useful as subtraction for creating holder plates for the motor.

Usage (in OpenSCAD)

  1. Create a box which represents your holder plate
  2. Substract the motor
  3. Print the plate
  4. Your real motor will fit into the printed plate

Example (see TestBox.scad)

use <Stepper.scad>;difference() {    cube([40,50,4],center=true);    translate([0,0,2.5])28BYJ();}