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 BX-car by
motor_api.h
- Committer:
- backman
- Date:
- 2014-06-03
- Revision:
- 1:82bc25a7b68b
- Child:
- 10:9f0ce6ba7663
File content as of revision 1:82bc25a7b68b:
#include "mbed.h"
class BX_motor{
public:
BX_motor(char type);
void rotate(float level);
private:
float Level;
char Type;
PwmOut* forward_A;
PwmOut* backward_A;
PwmOut* forward_B;
PwmOut* backward_B;
DigitalOut* engine_enable;
};
