Advertisement
koderkaran

Untitled

Nov 28th, 2020
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. $fn=48;
  2. difference(){
  3. //full chassis base
  4. cube([16.5,8.2,0.2]);
  5. // 4 holes for the clamps
  6. translate([6,8,0]){
  7. cube ([1.2,0.2,0.2]) ;
  8. }
  9. translate([6,6.15 ,0]){
  10. cube ([1.2,0.2,0.2]) ;
  11. }
  12. translate([6,0 ,0]){
  13. cube ([1.2,0.2,0.2]) ;
  14. }
  15. translate([6,1.85 ,0]){
  16. cube ([1.2,0.2,0.2]) ;
  17. }
  18. // the switch
  19. translate([5,3.5 ,0]){
  20. cube ([1.3,0.8,0.2]) ;
  21. }
  22. translate([4.93,3.7 ,0]){
  23. cube ([0.07,0.4,0.2]) ;
  24. }
  25. translate([6.3,3.7 ,0]){
  26. cube ([0.07,0.4,0.2]) ;
  27. }
  28. //the battery holder for imagination purpose
  29. translate([7.4,1,0.2]){
  30. cube ([5.8,6.2,0.2]) ;
  31. }
  32. //the 2 holes for screws of the battery holder
  33. translate([10.2,1,0]){
  34. cube([0.3,1,0.2]);
  35. }
  36.  
  37. translate([10.2,6.2,0]){
  38. cube([0.3,1,0.2]);
  39. }
  40. // the 4 holes of the castor wheel
  41. translate([13.6,2.5,0]){
  42. cylinder(r=0.2,h=0.2);
  43. }
  44. translate([13.6,5.3,0]){
  45. cylinder(r=0.2,h=0.2);
  46. }
  47. translate([15.5,5.3,0]){
  48. cylinder(r=0.2,h=0.2);
  49. }
  50. translate([15.5,2.5,0]){
  51. cylinder(r=0.2,h=0.2);
  52. }
  53. }
  54.  
  55. // check all dimensions
  56. //make wheel
  57. //make castor wheel
  58. //https://www.thingiverse.com/thing:1755397
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement