Kaishu Koike / Mbed 2 deprecated xbee_test

Dependencies:   TextLCD XBee mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002  
00003 Serial pc(P7_4, P7_5); // tx, rx
00004  
00005 int main() {
00006     pc.printf("Hello World!");
00007     while(1) {
00008         pc.putc(pc.getc());
00009     }
00010 }