control DC motor using pwm
Dependencies: Motordriver mbed
Fork of Motor_HelloWorld by
Revision 1:a96dd8db5c11, committed 2016-12-11
- Comitter:
- faif
- Date:
- Sun Dec 11 21:58:45 2016 +0000
- Parent:
- 0:7bbc230e00d6
- Commit message:
- Control a DC toy motor using PWM
Changed in this revision
diff -r 7bbc230e00d6 -r a96dd8db5c11 Motor.lib --- a/Motor.lib Tue Nov 23 16:19:19 2010 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -http://mbed.org/users/simon/code/Motor/#f265e441bcd9
diff -r 7bbc230e00d6 -r a96dd8db5c11 Motordriver.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Motordriver.lib Sun Dec 11 21:58:45 2016 +0000 @@ -0,0 +1,1 @@ +http://developer.mbed.org/users/littlexc/code/Motordriver/#3110b9209d3c
diff -r 7bbc230e00d6 -r a96dd8db5c11 main.cpp --- a/main.cpp Tue Nov 23 16:19:19 2010 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -// Sweep the motor speed from full-speed reverse (-1.0) to full speed forwards (1.0) - -#include "mbed.h" -#include "Motor.h" - -Motor m(p23, p6, p5); // pwm, fwd, rev - -int main() { - for (float s= -1.0; s < 1.0 ; s += 0.01) { - m.speed(s); - wait(0.02); - } -}
diff -r 7bbc230e00d6 -r a96dd8db5c11 pwm-motor.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pwm-motor.cpp Sun Dec 11 21:58:45 2016 +0000 @@ -0,0 +1,104 @@ +#include "mbed.h" +#include "motordriver.h" +#include "pwm-motor.h" + +static const char CLS[] = "\x1B[2J"; // VT100 erase screen +static const char HOME[] = "\x1B[H"; // VT100 home + +// in seconds +static const int move_delay = 0.02; + +enum Direction +{ + left, + right, +}; + +struct Movement +{ + public: + float start; + float stop; + float step; + float delay; + Direction direction; + + Movement() {} + + Movement(float startValue, + float stopValue, + float stepValue, + float delayValue, + Direction dir) : + start(startValue), + stop(stopValue), + step(stepValue), + delay(delayValue), + direction(dir) {} +}; + +Serial pc(USBTX, USBRX); + +int main() +{ + clear_screen(); + show_menu(); + + Motor motor(p21, p15, p17, 1); // PWM, Forward, Reverse, Can break + Movement leftMovement(-1.0, 1.0, 0.01, move_delay, left); + Movement rightMovement(1.0, -1.0, 0.01, move_delay, right); + + while (true) + { + Movement currentMovement; + switch(pc.getc()) + { + case 'r': + pc.printf("rotating right...\n\r"); + currentMovement = rightMovement; + move(motor, currentMovement); + break; + case 'l': + pc.printf("rotating left...\n\r"); + currentMovement = leftMovement; + move(motor, currentMovement); + break; + case 's': + pc.printf("stopping motor...\n\r"); + stop(motor); + break; + } + + } +} + +void clear_screen() +{ + pc.printf(CLS); + pc.printf(HOME); +} + +void show_menu() +{ + pc.printf("\rMotor controls:\n\r"); + pc.printf("l. Move left (counter-clockwise)\n\r"); + pc.printf("r. Move right (clockwise)\n\r"); + pc.printf("s. Stop\n\r"); +} + +void move(Motor& motor, Movement& movement) +{ + for (float s = movement.start; + movement.direction == left ? s < movement.stop : s > movement.stop; + movement.direction == left ? s += movement.step : s -= movement.step) + { + motor.speed(s); + wait(movement.delay); + } +} + + +void stop(Motor& motor) +{ + motor.stop(0.0); +} \ No newline at end of file
diff -r 7bbc230e00d6 -r a96dd8db5c11 pwm-motor.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pwm-motor.h Sun Dec 11 21:58:45 2016 +0000 @@ -0,0 +1,12 @@ +#ifndef PWM_MOTOR_H +#define PWM_MOTOR_H + +struct Movement; +enum Direction; + +void clear_screen(); +void show_menu(); +void move(Motor& motor, Movement& movement); +void stop(Motor& motor); + +#endif \ No newline at end of file