4 directional EMG control of the XY table. Made during my bachelor end assignment.

Dependencies:   C12832_lcd HIDScope mbed-dsp mbed

main.cpp

Committer:
jessekaiser
Date:
2015-04-23
Revision:
0:3acdd563582f
Child:
1:c5da4c1c29f4

File content as of revision 0:3acdd563582f:

#include "mbed.h"

DigitalOut Dir(p21);
PwmOut Step(p22);
DigitalOut MS1(p27);
DigitalOut MS2(p28);
DigitalOut MS3(p29);



int main()
{

    Step.period(1.0/10000);
    Step.write(0.5);
    

    while (1) {

    }

}