Romeo

Ce wiki a été archivé en 2018.

Le nouveau wiki se trouve à: ressources.labomedia.org

Les fonctionnalités sont désactivées: vous pouvez faire une recherche sur Google site:https://wiki.labomedia.org et découvrir La Labomedia.

De Centre de Ressources Numériques - Labomedia
Aller à : navigation, rechercher
Romeo
Image défaut fiche idée.png


Pour modifier la page utiliser l'onglet Modifier avec formulaire.

Résumé retour sur l'utilisation de la carte arduino Romeo V2.2
Auteur(s) gaziel
Licence CC-BY-SA 3
Date de création 15 décembre 1980


Intentions / Contexte

Principe de fonctionnement

Besoins / Compétences

Documentation

utilisation de la carte Romeo pour contrôler des moteurs

Création de la boite-support en scad

//boite pour roméo ep=2; h=15; $fn=50;

module bas(){ difference(){

   cube([90+2*ep,85+2*ep,2*ep+h]);
   translate([ep,ep,ep])cube([90,85,ep+h+1]);

//trous de fixation

   translate([ep+20,ep+20,0])cylinder(d=3,h=5*h);
   translate([ep+70,ep+20,0])cylinder(d=3,h=5*h);
   translate([ep+20,ep+70,0])cylinder(d=3,h=5*h);
   translate([ep+70,ep+70,0])cylinder(d=3,h=5*h);
   
   translate([95-2*ep,30+ep,2*ep])cube([3*ep,10,2*h]);//mini usb
   translate([95-2*ep,5+ep,2*ep])cube([3*ep,11,2*h]);//PWR
   translate([-ep,18+ep,2*ep])cube([3*ep,11,2*h]);//M1
   translate([-ep,33+ep,2*ep])cube([3*ep,11,2*h]);//M2
   translate([-ep,48+ep,2*ep])cube([3*ep,11,2*h]);//PWR M

} //tetons de surelevement translate([ep+75,ep+12,ep])cylinder(d1=5,d2=2,h=ep); translate([ep+5,ep+12,ep])cylinder(d1=5,d2=2,h=ep); translate([ep+5,ep+77,ep])cylinder(d1=5,d2=2,h=ep); translate([ep+84,ep+70,ep])cylinder(d1=5,d2=2,h=ep);

}

module haut(){ difference(){ union(){

   cube([90+2*ep,85+2*ep,ep]);
   translate([ep,ep,ep])cube([90,85,ep]);

}

   translate([26,0,-ep])cube([44,8,3*h]); //digital
   translate([24,12,-ep])cube([48,6,3*h]);//digital
   translate([24,60,-ep])cube([44,7,3*h]);//digital

} }


bas(); //haut();