Ejemplo n.º 1
0
 public static Task Send(this ZWaveChannel channel, Node node, Command command)
 {
     return(channel.Send(node.NodeID, command));
 }
Ejemplo n.º 2
0
 public static Task <byte[]> Send(this ZWaveChannel channel, byte nodeID, Command command, Enum responseCommand)
 {
     return(channel.Send(nodeID, command, Convert.ToByte(responseCommand)));
 }