if one wants to grab a stream from the coordinator that Rx'd it from a end node, what method does one call for that?
i can parse it once i grab it from the coordinator.
--
Bill
Key fingerprint = C472 148A 4185 ED70 2A61 B77C B428 3668 5D84 4495
public class ResponseHandlerExample {
public ResponseHandlerExample() {
XBee xbee = new XBee();
xbee.registerResponseHandler(0, MyResponse.class);
// xbee.open(..);
}
public static class MyResponse extends XBeeResponse {
@Override
protected void parse(IPacketParser parser) throws IOException {
// this.setxxx(parser.read("xxx"));
// this.setxxy(parser.read("xxy));
}
}
}
--
You received this message because you are subscribed to the Google Groups "xbee-api" group.
To post to this group, send email to xbee...@googlegroups.com.
To unsubscribe from this group, send email to xbee-api+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/xbee-api?hl=en.