test2

Dependencies:   mbed-src

main.cpp

Committer:
takt
Date:
2015-04-15
Revision:
1:74279cff173c
Parent:
0:68493d5f15b1

File content as of revision 1:74279cff173c:

#include "mbed.h"
#include "BufferedSerial.h"

static unsigned int s_rx_in = 0;

BufferedSerial pc(SERIAL_TX, SERIAL_RX);

DigitalOut myled(LED1);

int main() {
    while(1) {
        // test
        myled = 1; // LED is ON
        wait(0.2); // 200 ms
        myled = 0; // LED is OFF
        wait(1.0); // 1 sec
    }
}