Chumbaka

Dependencies:   Servo mbed Chumbaka_backup

Dependents:   Chumbaka_backup

Fork of Servo_HelloWorld by Simon Ford

main.cpp

Committer:
limcheecheng
Date:
2014-09-26
Revision:
7:5a56972596b9
Parent:
6:1141e5682610

File content as of revision 7:5a56972596b9:

#include "mbed.h"

DigitalOut myled(LED2);

int main() 
{
    while(1) 
    {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}