WIP
This commit is contained in:
@@ -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
17
esphome/fabula.yaml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
|
||||||
|
esp8266:
|
||||||
|
board: d1_mini_lite
|
||||||
|
|
||||||
|
# Enable logging
|
||||||
|
logger:
|
||||||
|
|
||||||
|
api:
|
||||||
|
|
||||||
|
ota:
|
||||||
|
- platform: esphome
|
||||||
|
password: ""
|
||||||
|
|
||||||
|
wifi:
|
||||||
|
ssid: "Pew"
|
||||||
|
password: "SediaChinita@Terrazzo2017"
|
||||||
|
|
||||||
Reference in New Issue
Block a user