Example #1
0
 public RemoteAtCommand(ushort command, XBeeAddress64 remoteSerial, XBeeAddress16 remoteAddress, byte[] value = null, bool applyChanges = true)
     : base(command, value)
 {
     RemoteAddress64 = remoteSerial;
     RemoteAddress16 = remoteAddress;
     ApplyChanges = applyChanges;
 }
 public RemoteAtCommand(ushort command, XBeeAddress64 remoteSerial, XBeeAddress16 remoteAddress, byte[] value = null, bool applyChanges = true)
     : base(command, value)
 {
     RemoteAddress64 = remoteSerial;
     RemoteAddress16 = remoteAddress;
     ApplyChanges    = applyChanges;
 }
Example #3
0
 public RemoteAtCommand(string command, XBeeAddress64 remoteSerial, XBeeAddress16 remoteAddress, byte[] value = null, bool applyChanges = true)
     : this(UshortUtils.FromAscii(command), remoteSerial, remoteAddress, value, applyChanges)
 {
 }
 public RemoteAtCommand(string command, XBeeAddress64 remoteSerial, XBeeAddress16 remoteAddress, byte[] value = null, bool applyChanges = true)
     : this(UshortUtils.FromAscii(command), remoteSerial, remoteAddress, value, applyChanges)
 {
 }