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.
Diff: motordriver.h
- Revision:
- 4:5fb1296c0d60
- Parent:
- 2:2dc873322032
- Child:
- 6:c411a45697f6
--- a/motordriver.h Fri Nov 19 12:33:38 2010 +0000
+++ b/motordriver.h Thu Nov 25 13:31:22 2010 +0000
@@ -68,6 +68,12 @@
*/
float stop(float duty);
+/** return the current state of the motor
+*
+* @param void
+* @return state of motor, -1 to 1 is speed, -2 is braking, 2 is coasting. -3 is error.
+*/
+ float state(void);
protected:
PwmOut _pwm;
@@ -78,4 +84,8 @@
};
+
+
+
+
#endif