Last active
January 6, 2018 01:13
-
-
Save cwebber314/be5d02052c7c3cedf03ff2d1c0716c52 to your computer and use it in GitHub Desktop.
quarter size Adafruit perfboard mount
This file contains hidden or 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
// Screwless mount for a perfborad: | |
// Adafruit Perma-Proto Quarter-sized Breadboard PCB | |
bh=5; // base height | |
d=35.8; | |
module spacer(x=0, y=0, z=0){ | |
translate([x,y,z]){ | |
cylinder(d=5, h=10); | |
cylinder(d=3.2, h=12); | |
} | |
} | |
spacer(0, 5, bh); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment