Test program for Interface

Dependencies:   mbed

Fork of HelloWorld by Simon Ford

main.cpp

Committer:
Masa3
Date:
2014-07-01
Revision:
3:6f02cd1c0b84
Parent:
0:fb6bbc10ffa0

File content as of revision 3:6f02cd1c0b84:

#include "mbed.h"

//DigitalOut myled(LED1);
DigitalOut myled(LED3);

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