Last active
March 8, 2022 18:41
-
-
Save foofoodog/6fd89abe0838d1eaac889091fc0de0ef to your computer and use it in GitHub Desktop.
Big Clive Ryobi Adaptor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Fron Big Clive | |
// https://www.youtube.com/watch?v=0oBbF3bcDck | |
//Ryobi adaptor | |
$fn=50; | |
height=20; | |
difference(){ | |
union(){ | |
//main block | |
cylinder(h=height,d=29); | |
translate([-14.5,0,0]) | |
cube([29,20.5,height]); | |
} | |
//battery recess | |
translate([0,0,1]) | |
cylinder(h=height,d=27); | |
translate([-13.5,0,1]) | |
cube([27,19.5,height]); | |
//terminal slots | |
translate([-12.5,3.5,-1]) | |
cube([2,7,5]); | |
translate([10.5,3.5,-1]) | |
cube([2,7,5]); | |
//polarity markings | |
translate([-7,6.5,-1]) | |
cube([5,1,5]); | |
translate([4,4.5,-1]) | |
cube([1,5,5]); | |
translate([2,6.5,-1]) | |
cube([5,1,5]); | |
} | |
//Pressure plates | |
translate([-14.5,3.5,0]) | |
cube([2,7,14]); | |
translate([12.5,3.5,0]) | |
cube([2,7,14]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment