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,6 +3,8 @@ radius=5;
use <lib/mirrorcopy.scad>;
module stand(){
render()
difference(){
union(){
hull(){
@ -43,3 +45,11 @@ 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,6 +57,8 @@ module pedistal(){
cylinder(d=3.2, h=24, center=true);
}
}
module column(){
render()
difference(){
union(){
hull(){ base(); ring0(); }
@ -80,4 +82,11 @@ difference(){
translate([17.5,17.5,-4])
selfTappingScrew(mSize=5, length=20, recessCap=10);
}
}
if($preview){
rotate([0,0,360*$t])
column();
}else{
column();
}