|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /**
- * Copyright (c) 2009 Andrew Rapp. All rights reserved.
- *
- * This file is part of XBee-Arduino.
- *
- * XBee-Arduino is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * XBee-Arduino is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with XBee-Arduino. If not, see <http://www.gnu.org/licenses/>.
- */
-
- #include <XBee.h>
- #include <SoftwareSerial.h>
-
- /*
- This example is for Series 1 XBee Radios only
- Receives I/O samples from a remote radio with 16-bit addressing.
- The remote radio must have IR > 0, at least one digital or analog input enabled
- and DL set to the 16-bit address of the receiving XBee (the one connected to the Arduino).
-
- This example uses the SoftSerial library to view the XBee communication. I am using a
- Modern Device USB BUB board (http://moderndevice.com/connect) and viewing the output
- with the Arduino Serial Monitor.
- */
-
- // Define NewSoftSerial TX/RX pins
- // Connect Arduino pin 8 to TX of usb-serial device
- uint8_t ssRX = 8;
- // Connect Arduino pin 9 to RX of usb-serial device
- uint8_t ssTX = 9;
- // Remember to connect all devices to a common Ground: XBee, Arduino and USB-Serial device
- SoftwareSerial nss(ssRX, ssTX);
-
- XBee xbee = XBee();
-
- Rx16IoSampleResponse ioSample = Rx16IoSampleResponse();
- // 64-bit response is same except api id equals RX_64_IO_RESPONSE and returns a 64-bit address
- //Rx64IoSampleResponse ioSample = Rx64IoSampleResponse();
-
- void setup() {
- Serial.begin(9600);
- xbee.setSerial(Serial);
- // start soft serial
- nss.begin(9600);
- }
-
- void loop() {
- //attempt to read a packet
- xbee.readPacket();
-
- if (xbee.getResponse().isAvailable()) {
- // got something
-
- if (xbee.getResponse().getApiId() == RX_16_IO_RESPONSE) {
- xbee.getResponse().getRx16IoSampleResponse(ioSample);
-
- nss.print("Received I/O Sample from: ");
- nss.println(ioSample.getRemoteAddress16(), HEX);
-
- nss.print("Sample size is ");
- nss.println(ioSample.getSampleSize(), DEC);
-
- if (ioSample.containsAnalog()) {
- nss.println("Sample contains analog data");
- }
-
- if (ioSample.containsDigital()) {
- nss.println("Sample contains digtal data");
- }
-
- for (int k = 0; k < ioSample.getSampleSize(); k++) {
- nss.print("Sample ");
- nss.print(k + 1, DEC);
- nss.println(":");
-
- for (int i = 0; i <= 5; i++) {
- if (ioSample.isAnalogEnabled(i)) {
- nss.print("Analog (AI");
- nss.print(i, DEC);
- nss.print(") is ");
- nss.println(ioSample.getAnalog(i, k));
- }
- }
-
- for (int i = 0; i <= 8; i++) {
- if (ioSample.isDigitalEnabled(i)) {
- nss.print("Digtal (DI");
- nss.print(i, DEC);
- nss.print(") is ");
- nss.println(ioSample.isDigitalOn(i, k));
- }
- }
- }
- }
- else {
- nss.print("Expected I/O Sample, but got ");
- nss.print(xbee.getResponse().getApiId(), HEX);
- }
- }
- else if (xbee.getResponse().isError()) {
- nss.print("Error reading packet. Error code: ");
- nss.println(xbee.getResponse().getErrorCode());
- }
- }
|