Skip to content

Instantly share code, notes, and snippets.

@abfo
Last active December 27, 2023 01:13
Show Gist options
  • Save abfo/f959cb6ee205c7bdd531e9610f4e7d23 to your computer and use it in GitHub Desktop.
Save abfo/f959cb6ee205c7bdd531e9610f4e7d23 to your computer and use it in GitHub Desktop.
OpenSCAD code for a wall mount for the Aura Carver Mat digital photo frame. Details at https://ithoughthecamewithyou.com/post/3d-printing-a-discreet-wall-mount-shelf-for-the-aura-carver-mat
difference() {
union() {
cube(size=[61,85,5], center = true);
translate([29.5, 0 ,5]) {
cube(size=[2, 85, 10], center = true);
}
translate([-29.5, 0 ,15]) {
cube(size=[2, 85, 30], center = true);
}
}
rotate([0,90,0]) {
translate([-15,25,-35]) {
cylinder(h=15, d=3);
}
}
rotate([0,90,0]) {
translate([-15,-25,-35]) {
cylinder(h=15, d=3);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment