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.
main.cpp
- Committer:
- lucasfontenla
- Date:
- 2018-04-26
- Revision:
- 3:eb9bd4131e95
- Parent:
- 2:73d24891eef6
- Child:
- 4:48717b42eab2
File content as of revision 3:eb9bd4131e95:
#include "mbed.h"
DigitalOut step(D7);
DigitalOut dir(D8);
int main(){
dir = 1;
while(1){
step = 1;
wait(1);
step = 0;
wait(1);
}
}