mirror of
https://github.com/thehookup/Motorized_MQTT_Blinds.git
synced 2026-01-06 21:23:49 -05:00
Add adapter for 6mm square tilt rod, together with the scad file to create it in case it is useful for creating other variants. Signed-off-by: Matt Redfearn <matt.redfearn@gmail.com>
17 lines
293 B
OpenSCAD
17 lines
293 B
OpenSCAD
|
|
|
|
$fn=144;
|
|
|
|
shaft_diameter = 6.5;
|
|
|
|
difference() {
|
|
cylinder(18, 7, 7);
|
|
|
|
//Blinds shaft
|
|
translate([-shaft_diameter/2, -shaft_diameter/2, 7])
|
|
cube([shaft_diameter, shaft_diameter, 11]);
|
|
|
|
// Motor shaft
|
|
translate([-6/2, -3.5/2, 0])
|
|
cube([6, 3.5, 7]);
|
|
}; |