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 PID ADXL345 Camera_LS_Y201 ITG3200 RangeFinder mbos xbee_lib Motor Servo
main.cpp
- Committer:
- NicolasH
- Date:
- 2013-01-30
- Revision:
- 5:58b31dbee84d
- Parent:
- 4:6ed4f04bda1b
- Child:
- 6:0e3d95e9885e
- Child:
- 7:4757e20e6f0f
File content as of revision 5:58b31dbee84d:
#include "mbed.h"
DigitalOut myled(LED1);
int main() {
while(1) {
myled = 1;
wait(0.2);
myled = 0;
wait(0.2);
}
}
