Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed XBee mbed-rtos
examples/xbee_enddev04.cpp@10:0cb575e57f9a, 2013-01-29 (annotated)
- Committer:
- yamaguch
- Date:
- Tue Jan 29 13:58:19 2013 +0000
- Revision:
- 10:0cb575e57f9a
added end device examples
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| yamaguch | 10:0cb575e57f9a | 1 | #include "XBee.h" |
| yamaguch | 10:0cb575e57f9a | 2 | |
| yamaguch | 10:0cb575e57f9a | 3 | void xbee_enddev04() { |
| yamaguch | 10:0cb575e57f9a | 4 | XBee xbee(p9, p10); |
| yamaguch | 10:0cb575e57f9a | 5 | xbee.baud(115200); |
| yamaguch | 10:0cb575e57f9a | 6 | |
| yamaguch | 10:0cb575e57f9a | 7 | if (xbee.init()) { |
| yamaguch | 10:0cb575e57f9a | 8 | xbee.sendCommand("NI"); |
| yamaguch | 10:0cb575e57f9a | 9 | xbee.sendCommand("SM"); |
| yamaguch | 10:0cb575e57f9a | 10 | xbee.sendCommand("SP"); |
| yamaguch | 10:0cb575e57f9a | 11 | xbee.sendCommand("ST"); |
| yamaguch | 10:0cb575e57f9a | 12 | |
| yamaguch | 10:0cb575e57f9a | 13 | while (xbee.receive()) |
| yamaguch | 10:0cb575e57f9a | 14 | xbee.dump(); |
| yamaguch | 10:0cb575e57f9a | 15 | } else { |
| yamaguch | 10:0cb575e57f9a | 16 | printf("XBee initialization failed\n"); |
| yamaguch | 10:0cb575e57f9a | 17 | } |
| yamaguch | 10:0cb575e57f9a | 18 | } |