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.
Fork of Motor by
Revision 3:bab4eebbf1a0, committed 2012-11-08
- Comitter:
- moose
- Date:
- Thu Nov 08 15:52:42 2012 +0000
- Parent:
- 2:f265e441bcd9
- Commit message:
- Changed Motor to 2 input - pwm & direction
Changed in this revision
Motor.cpp | Show annotated file Show diff for this revision Revisions of this file |
Motor.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/Motor.cpp Tue Nov 23 16:16:43 2010 +0000 +++ b/Motor.cpp Thu Nov 08 15:52:42 2012 +0000 @@ -24,21 +24,21 @@ #include "mbed.h" -Motor::Motor(PinName pwm, PinName fwd, PinName rev): - _pwm(pwm), _fwd(fwd), _rev(rev) { +Motor::Motor(PinName pwm, PinName dir): + _pwm(pwm), _dir(dir) { // Set initial condition of PWM - _pwm.period(0.001); + _pwm.period(0.00005); //20kHz _pwm = 0; // Initial condition of output enables - _fwd = 0; - _rev = 0; + _dir = 1; +// _rev = 0; } void Motor::speed(float speed) { - _fwd = (speed > 0.0); - _rev = (speed < 0.0); + _dir = (speed > 0.0); +// _rev = (speed < 0.0); _pwm = abs(speed); }
--- a/Motor.h Tue Nov 23 16:16:43 2010 +0000 +++ b/Motor.h Thu Nov 08 15:52:42 2012 +0000 @@ -38,7 +38,7 @@ * @param fwd A DigitalOut, set high when the motor should go forward * @param rev A DigitalOut, set high when the motor should go backwards */ - Motor(PinName pwm, PinName fwd, PinName rev); + Motor(PinName pwm, PinName dir); /** Set the speed of the motor * @@ -48,8 +48,8 @@ protected: PwmOut _pwm; - DigitalOut _fwd; - DigitalOut _rev; + DigitalOut _dir; +// DigitalOut _rev; };