This is the relay01 port switch on command:
byte[] relay01on = new byte[] {85,170,170,170,170,170,3,6,128,0,0,0,0,0,48,22};
TcpClient.SendMessage(relay01on);
and this is relay01 port switch off command:
byte[] relay01off = new byte[] {85,170,170,170,170,170,3,6,144,0,0,0,0,0,64,22};
TcpClient.SendMessage(relay01off);
How can I add the relay01 to switch module? And, how can I control the relay01 with switch module on / off button?
Thanks for the help!