Cours:Multimetre : Différence entre versions
(→Planning) |
|||
Ligne 1 : | Ligne 1 : | ||
=Planning= | =Planning= | ||
− | *Lundi : 8h30-12h30 14h-17h | + | *Lundi : 8h30-12h30 14h-17h |
− | **dossier | + | **dossier : 8h30-11h00 14h-17h |
− | ** | + | **formation KiCad de 11h à 12h30 |
− | *Mardi : montage de la carte | + | *Mardi : montage et test de la carte / routage |
*Mercredi : programmation | *Mercredi : programmation | ||
Version du 3 novembre 2024 à 18:07
Sommaire
Planning
- Lundi : 8h30-12h30 14h-17h
- dossier : 8h30-11h00 14h-17h
- formation KiCad de 11h à 12h30
- Mardi : montage et test de la carte / routage
- Mercredi : programmation
Fichiers
- liens tinkercad
- Liens feuilles de calculs
- Fichiers Kicad
- Fichiers eagle :
Programmation
Vérification du fonctionnement de la carte
- Télécharger le fichier suivant et le décompresser !
Media:TestMultimetre.ino.hex.zip
- Programmer dans un terminal avec la ligne de commande suivante :
avrdude -v -patmega328p -carduino -P/dev/ttyUSB0 -b115200 -D -Uflash:w:testMultimetre.ino.hex:i
Programmation sur tinkercad
https://www.tinkercad.com/things/dSQS8on1FL6
Fonction affiche
// ! bien déclarer les broches en sorties !
void affiche7sgt(uint8_t n)
{
PORTB=(PORTB&0xf0)|(n&0x0f);
}
// exemple d'utilisation
affiche7sgt(2); // permettra d'afficher la valeur 2
affiche7sgt(i); // permettra d'afficher le chiffre i (entre 0 et 9 ! )
affiche7sgt(n%10); // permettra d'afficher la valeur des unités de n