Dependencies:   YMotor mbed

main.cpp

Committer:
inst
Date:
2015-10-14
Revision:
0:c828fcf29c55
Child:
3:43a3d01e6bff

File content as of revision 0:c828fcf29c55:

#include "mbed.h"
#include "YMotorDriver.h"

int main() {
    YMotorDriver m;
    
    while( true ) {
        m.update();
    }
    
    return 0;
}