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.
moteur.h@17:db154d50ab1f, 2020-05-02 (annotated)
- Committer:
- burgerking
- Date:
- Sat May 02 12:41:42 2020 +0000
- Revision:
- 17:db154d50ab1f
hguj;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
burgerking | 17:db154d50ab1f | 1 | /************************************************************************** |
burgerking | 17:db154d50ab1f | 2 | * Prototype des fonctions utilisées en ER1 pour commander les moteurs |
burgerking | 17:db154d50ab1f | 3 | ***************************************************************************/ |
burgerking | 17:db154d50ab1f | 4 | |
burgerking | 17:db154d50ab1f | 5 | #ifndef MOTEUR_H |
burgerking | 17:db154d50ab1f | 6 | #define MOTEUR_H |
burgerking | 17:db154d50ab1f | 7 | |
burgerking | 17:db154d50ab1f | 8 | #include "mbed.h" |
burgerking | 17:db154d50ab1f | 9 | #include "C12832.h" |
burgerking | 17:db154d50ab1f | 10 | //déclarations prototypes |
burgerking | 17:db154d50ab1f | 11 | void initVariateurs(void); |
burgerking | 17:db154d50ab1f | 12 | //les commandes sont passées en % -100 à +100 |
burgerking | 17:db154d50ab1f | 13 | void commandeMoteurs(int moteurG, int moteurD); |
burgerking | 17:db154d50ab1f | 14 | #endif |