This commit is contained in:
Greyscale 2024-06-24 11:19:21 +02:00
parent 29d501e64e
commit 95eaaa28ce
No known key found for this signature in database
GPG key ID: 74BAFF55434DA4B2
6 changed files with 78 additions and 52 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
frame*.png

View file

@ -1,2 +1,8 @@
# Space-Light-Button-Stands
Space Light Button Stands
=========================
Little stands to hold the ikea zigbee buttons in the aux and main spaces
![](./main_space_light_button-stand.gif)
![](./aux_space_light_button-stand.gif)

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

View file

@ -3,7 +3,9 @@ radius=5;
use <lib/mirrorcopy.scad>;
difference(){
module stand(){
render()
difference(){
union(){
hull(){
translate([0,0,20])
@ -42,4 +44,12 @@ difference(){
}
translate([0,0,10-1])
cylinder(h=30, d=35, center=true);
}
}
if($preview){
rotate([0,0,360*$t])
stand();
}else{
stand();
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

View file

@ -57,7 +57,9 @@ module pedistal(){
cylinder(d=3.2, h=24, center=true);
}
}
difference(){
module column(){
render()
difference(){
union(){
hull(){ base(); ring0(); }
hull(){ ring0(); ring1(); }
@ -79,5 +81,12 @@ difference(){
mirrorCopy([1,0,0],[0,1,0])
translate([17.5,17.5,-4])
selfTappingScrew(mSize=5, length=20, recessCap=10);
}
}
if($preview){
rotate([0,0,360*$t])
column();
}else{
column();
}