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: CustomExplorerRobot mbed
main.cpp
- Committer:
- Usuke
- Date:
- 2016-02-27
- Revision:
- 1:444982b9e003
- Parent:
- 0:b14e99f78c69
File content as of revision 1:444982b9e003:
#include "mbed.h"
#include "CustomExplorerRobot.h"
CustomExplorerRobot cer;
int main() {
wait(0.5f);
cer.forward(0.5f);
wait(0.5f);
cer.left(0.5f);
wait(0.5f);
cer.backward(0.5f);
wait(0.5f);
cer.right(0.5f);
wait(0.5f);
cer.stop();
return 0;
}
Custom Explorer Robot