Skip to content

Commit

Permalink
Make a prinplate for 4011.
Browse files Browse the repository at this point in the history
Resolve issue with rotor cup.
  • Loading branch information
kaklik committed Jun 3, 2024
1 parent d4cdbf1 commit 5e26263
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 13 deletions.
36 changes: 23 additions & 13 deletions CAD/src/888_4011.scad
Original file line number Diff line number Diff line change
@@ -1,39 +1,49 @@
include <../parameters.scad>


module 888_4011()
module 888_4011(thickness=2)
{
h=2;
h=thickness;
l=55;
w=19;

difference()
{
union(){
hull()
{
cylinder(h=h,d=30, $fn=120, center =true);
cube([l,w,h], center =true);
}

translate([0,0,-0.6])
cylinder(d=5,h=thickness,center=true,$fn=30);
}


//šroubky
rotate([0,0,free_flap_delta_angle])
for(i=[-1,1])
translate([0,i*free_flap_central_part_screw_distance,0])
cylinder(d=M3_screw_diameter,h=20,center=true,$fn=30);

//osa
cylinder(d=M3_screw_diameter,h=20,center=true,$fn=30);

//dražky
for(i=[-1,1])
translate([i*15,0,0])
#cube([15,1,20],center=true);


cube([15,1,20],center=true);

rotate([0,0,40]){
translate([-3.5, 3, 0.4])
linear_extrude(1)
text(str(week), size = 5);

translate([-2, -8, 0.4])
linear_extrude(1)
text(str(thickness), size = 5);
}
}



}

888_4011();
888_4011();
8 changes: 8 additions & 0 deletions CAD/src/printplate/printplate_888_4011.scad
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//@set_slicing_config(../../slicing/blade_center_parts.ini)

include <../../parameters.scad>

use <../888_4011.scad>


rotate([180, 0, 0]) 888_4011(thickness=2);

0 comments on commit 5e26263

Please sign in to comment.