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 X_NUCLEO_PLC01A1 ros_lib_melodic
main.cpp
- Committer:
- yamadola
- Date:
- 2020-08-30
- Revision:
- 3:ea5cfd721b53
- Parent:
- 1:ef4b86795d79
File content as of revision 3:ea5cfd721b53:
#include "mbed.h"
#include "uv_robot.h"
int main()
{
UVRobot myRobot;
myRobot.init();
wait_ms(100);
myRobot.start();
while (1) {
}
return 0;
}