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.
Dependencies: mbed
main.cpp
- Committer:
- thmaure
- Date:
- 2015-05-21
- Revision:
- 0:a1d256e2cd41
File content as of revision 0:a1d256e2cd41:
#include "mbed.h" DigitalOut enable(D2); PwmOut step(D3); PwmOut led(LED2); DigitalInOut mybut(USER_BUTTON); int main() { enable=1; step.period_ms(10); step.pulsewidth_ms(5); while(1){ enable=0; wait(0.1); enable=1; wait(0.4); } }