TT Motor Plate Bracket
This is what is generated from tt_motor_plate_bracket();.
Customizing tt_motor_plate_bracket with OpenSCAD parameters
tt_motor_plate_bracket is the mounting plate for a yellow TT gearmotor. It bolts onto the prpol grid and holds the motor against it. Here it is called with every parameter spelled out:
tt_motor_plate_bracket(
plate_thickness = 5,
echo_parameters = true
);
| plate_thickness | plate thickness in mm (default 5). |
| echo_parameters | when true (default), the OpenSCAD console echoes the full parameter list when you preview or render the module. |
If you leave a parameter out of the module call, that parameter will just have the default value. For example, these are all valid module calls:
tt_motor_plate_bracket();
tt_motor_plate_bracket(plate_thickness = 3);