all publish
Dependencies: mbed QEI PID Motor
main.cpp
- Committer:
- daikinect
- Date:
- 2019-05-06
- Revision:
- 0:c011ccc8e25e
File content as of revision 0:c011ccc8e25e:
#include "mbed.h" DigitalOut myled(LED1); int main() { while(1) { myled = 1; // LED is ON wait(0.2); // 200 ms myled = 0; // LED is OFF wait(1.0); // 1 sec } }