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: main.cpp
- Revision:
- 6:8d2171811f14
- Parent:
- 5:74fcd196ff96
- Child:
- 8:2abfdbf5a3b8
--- a/main.cpp Fri Nov 11 02:31:30 2016 +0000 +++ b/main.cpp Fri Nov 11 06:37:24 2016 +0000 @@ -1,15 +1,18 @@ #include "QEI.h" +#include "Motor.h" Serial pc(USBTX, USBRX); //Use X4 encoding. //QEI wheel(p29, p30, NC, 624, QEI::X4_ENCODING); //Use X2 encoding by default. -QEI wheel (p29, p30, NC, 624); - +QEI wheel (PTC16, PTC17, PTB9, 512); +Motor motor(PTC4, PTD0, PTC3, PTC12, PTB23); + int main() { - while(1){ - wait(0.1); + motor.clockwise(); + + motor.anticlockwise(); pc.printf("Pulses is: %i\n", wheel.getPulses()); }