support 3d entretien robot fichier stl 3d
bonjour je suis a la recherche d'un support pour robot tondeuse A2 pour faire entretien plus facilement fichier stl merciImage
Avatar de l’utilisateur
Site Admin
Re: support 3d entretien robot fichier stl 3d
Bonjour,

A ma connaissance il n'existe pas encore de modèle STL pour positionner le A2 (ou un autre Dreame) à la verticale.

Si vous connaissez le diamètre exacte de la roue vous pourriez utiliser ce code et l'adapter:

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();
}
stl_roue.jpg
stl_roue.jpg (44.64 Kio) Consulté 6 fois
Administrateur
RoboForum.fr / Nemory.fr

Modèle: Dreame A1 (Mod: Roue tout-terrain + Plateau ZTTL / 9x Lames titane)
Terrain: 1300m² - Surface de tonte: 589m² (evolutif)
Répondre