Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
motors.h@16:ae65ce77b1f9, 2020-10-02 (annotated)
- Committer:
- Nanaud
- Date:
- Fri Oct 02 21:09:45 2020 +0000
- Revision:
- 16:ae65ce77b1f9
- Parent:
- 10:0714feaaaee1
- Child:
- 18:48246daf0c06
02/10/2020
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Nanaud | 1:2fe8c402ee79 | 1 | // Nom du fichier : motors.h |
Nanaud | 0:dc036b67c87c | 2 | |
Nanaud | 1:2fe8c402ee79 | 3 | // Prototypes |
Nanaud | 0:dc036b67c87c | 4 | void drv_init(); |
Nanaud | 0:dc036b67c87c | 5 | |
Nanaud | 0:dc036b67c87c | 6 | void mot_en(); |
Nanaud | 0:dc036b67c87c | 7 | void mot_dis(); |
Nanaud | 10:0714feaaaee1 | 8 | void motG_en(); |
Nanaud | 10:0714feaaaee1 | 9 | void motD_en(); |
Nanaud | 10:0714feaaaee1 | 10 | void motG_dis(); |
Nanaud | 10:0714feaaaee1 | 11 | void motD_dis(); |
Nanaud | 0:dc036b67c87c | 12 | void motGauche_fwd(); |
Nanaud | 0:dc036b67c87c | 13 | void motDroite_fwd(); |
Nanaud | 0:dc036b67c87c | 14 | void motGauche_bck(); |
Nanaud | 3:3ba377aafdfd | 15 | void motDroite_bck(); |
Nanaud | 16:ae65ce77b1f9 | 16 | void vitesseMotG(int vitesse); |
Nanaud | 16:ae65ce77b1f9 | 17 | void vitesseMotD(int vitesse); |
Nanaud | 3:3ba377aafdfd | 18 | |
Nanaud | 3:3ba377aafdfd | 19 | void test_drv(); |
Nanaud | 5:34ed652f8c31 | 20 | void testAngle(int cmdAngle); |
Nanaud | 10:0714feaaaee1 | 21 | //double mot_acc(double vit,double distanceParcourue, double distAfaire); |
Nanaud | 10:0714feaaaee1 | 22 | //double mot_dec(double vit,double distanceParcourue, double distAfaire); |
Nanaud | 10:0714feaaaee1 | 23 | void mot_acc(); |
Nanaud | 10:0714feaaaee1 | 24 | void mot_dec(); |