support 3d entretien robot fichier stl 3d
Publié : 24 avr. 2026 11:24
bonjour je suis a la recherche d'un support pour robot tondeuse A2 pour faire entretien plus facilement fichier stl merci

Communauté des utilisateurs de robot tondeuse Dreame et Mova
https://roboforum.fr/

Code : Tout sélectionner
// ===== SUPPORT VERTICAL PRO - DREAME A2 =====
// === PARAMÈTRES (modifiable si besoin) ===
wheel_diameter = 215; // diamètre roue avec tolérance
wheel_width = 70; // largeur roue avec tolérance
chock_width = 95;
chock_length = 170;
chock_height = 90;
stop_height = 35;
angle = 12; // angle critique stabilité
// === CORPS PRINCIPAL (rampe) ===
module ramp() {
hull() {
cube([chock_width, chock_length, 6]);
translate([0, chock_length-50, chock_height])
cube([chock_width, 50, 6]);
}
}
// === LOGEMENT ROUE (butée arrondie) ===
module wheel_cut() {
translate([chock_width/2, chock_length-45, chock_height-15])
rotate([90,0,0])
cylinder(d=wheel_diameter*0.6, h=wheel_width+15, center=true);
}
// === BUTÉE AVANT (sécurité) ===
module front_stop() {
translate([0, chock_length-20, 0])
cube([chock_width, 20, stop_height]);
}
// === RENFORTS STRUCTURELS ===
module ribs() {
for(i=[0:3]) {
translate([10 + i*22, 0, 0])
cube([6, chock_length, 25]);
}
}
// === GRIP SURFACE (rainures) ===
module grip() {
for(i=[0:10]) {
translate([0, i*15, 1])
cube([chock_width, 3, 1]);
}
}
// === ASSEMBLAGE FINAL ===
difference() {
union() {
ramp();
front_stop();
ribs();
grip();
}
wheel_cut();
}