XBee and XBee-PRO ZigBee RF modules provide cost-effective wireless connectivity to electronic devices. They are interoperable with other ZigBee PRO feature set devices, including devices from other vendors.

Dependencies:   BufferedArray

Dependents:   MBEDminiproject

Revision:
4:a0f1fba6c2fb
Parent:
0:837e6c48e90d
Child:
6:5f31ddc17239
--- a/Request/RemoteIODetectionConfigRequest.h	Mon Oct 26 18:04:12 2015 +0000
+++ b/Request/RemoteIODetectionConfigRequest.h	Fri Oct 30 00:38:40 2015 +0000
@@ -8,8 +8,8 @@
 class RemoteIODetectionConfigRequest : public RemoteATCommandRequest
 {
 public:
-    RemoteIODetectionConfigRequest(char frameID, Address * remoteAddress, Pin * pins, int size)
-        : RemoteATCommandRequest(frameID, remoteAddress, ATCommands::Digital_IO_Change_Detection, &RemoteCommandOptions::ApplyChanges, Pin::IOChangeDetectionConfiguration(pins, size), 0, 2)
+    RemoteIODetectionConfigRequest(char frameID, Address * remoteAddress, Pin ** pins, int size)
+        : RemoteATCommandRequest(frameID, remoteAddress, ATCommands::Digital_IO_Change_Detection, RemoteCommandOptions::ApplyChanges, Pin::IOChangeDetectionConfiguration(pins, size), 0, 2)
     { }
 };