Demo for Serial Comms

Dependencies:   mbed

Fork of frdm_serial by NXP

main.cpp

Committer:
mbed_official
Date:
2013-02-19
Revision:
3:eea88312499a
Parent:
1:32eacc4f6beb
Child:
4:d6816f97e349

File content as of revision 3:eea88312499a:

#include "mbed.h"

DigitalOut myled(LED_GREEN);
Serial pc(USBTX,USBRX);

int main() {
    int i=0;
    pc.printf("\nHello World!\n");
    
    while (true) {
        wait(0.5);
        pc.printf("%d\n",i);
        i++;
        myled = !myled;
    }
}