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.
test.cpp
- Committer:
- Yoshiemon
- Date:
- 2020-08-03
- Revision:
- 0:5449902c13e0
File content as of revision 0:5449902c13e0:
#include "mbed.h"
DigitalOut l(p21);
DigitalOut r(p22);
//DigitalOut en(p12);
int main() {
//en = 1;
while(1) {
l = 1;
/*wait(20);
l = 0;
wait(2)*/
}
}