This commit is contained in:
2025-12-02 22:25:05 +01:00
parent 6588a676f5
commit 5771e6abc6
2 changed files with 39 additions and 11 deletions

View File

@@ -5,19 +5,30 @@ height = 60;
depth = 40; depth = 40;
// Main body // Main body
rounded_edge_diameter = height; module main_body() {
module half_body() { rounded_edge_diameter = height;
module half_body() {
cube([width - rounded_edge_diameter/2, height/2, depth]); cube([width - rounded_edge_diameter/2, height/2, depth]);
cylinder(h = depth, d = rounded_edge_diameter, $fn=64); cylinder(h = depth, d = rounded_edge_diameter, $fn=64);
} }
union() { union() {
translate([-(width - rounded_edge_diameter)/2, 0, -depth/2]) {
half_body(); half_body();
translate([width - rounded_edge_diameter, 0, 0]) { }
translate([(width - rounded_edge_diameter)/2, 0, -depth/2]) {
mirror([1, 0, 0]) { mirror([1, 0, 0]) {
mirror([0, 1, 0]) { mirror([0, 1, 0]) {
half_body(); half_body();
} }
} }
} }
}
}
difference() {
main_body();
scale([0.9, 0.9, 0.9]) {
main_body();
}
} }

17
esphome/fabula.yaml Normal file
View File

@@ -0,0 +1,17 @@
esp8266:
board: d1_mini_lite
# Enable logging
logger:
api:
ota:
- platform: esphome
password: ""
wifi:
ssid: "Pew"
password: "SediaChinita@Terrazzo2017"