Hiroshi Yamaguchi / Mbed 2 deprecated XBeeExamples

Dependencies:   mbed XBee mbed-rtos

Committer:
yamaguch
Date:
Tue Jan 29 14:00:39 2013 +0000
Revision:
11:25a790b8feb0
recommit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
yamaguch 11:25a790b8feb0 1 #include "XBee.h"
yamaguch 11:25a790b8feb0 2
yamaguch 11:25a790b8feb0 3 void xbee_io03() {
yamaguch 11:25a790b8feb0 4 XBee xbee(p9, p10);
yamaguch 11:25a790b8feb0 5 xbee.baud(115200);
yamaguch 11:25a790b8feb0 6 xbee.init();
yamaguch 11:25a790b8feb0 7
yamaguch 11:25a790b8feb0 8 xbee.sendCommand("D1", 2);
yamaguch 11:25a790b8feb0 9 xbee.sendCommand("D4", 3);
yamaguch 11:25a790b8feb0 10
yamaguch 11:25a790b8feb0 11 while (xbee.receive())
yamaguch 11:25a790b8feb0 12 xbee.dump();
yamaguch 11:25a790b8feb0 13
yamaguch 11:25a790b8feb0 14 for (int i = 0; i < 60; i++) {
yamaguch 11:25a790b8feb0 15 xbee.sendCommand("IS");
yamaguch 11:25a790b8feb0 16 xbee.receive();
yamaguch 11:25a790b8feb0 17 xbee.dump();
yamaguch 11:25a790b8feb0 18 wait(1);
yamaguch 11:25a790b8feb0 19 }
yamaguch 11:25a790b8feb0 20
yamaguch 11:25a790b8feb0 21 printf("done.\n");
yamaguch 11:25a790b8feb0 22 }