Two actuators / IR sender example
-
Hi,
I am building a simple remote on/off based on the IR sender example.
It uses a light switch to send IR commands (one command for on and one command for off)
Now I want to add a second switch as a new child, and send some other ir codes.
But I can understand how to the message is adressed to a child device? Can anyone point me inte the right direction.
"" if (message.type==V_LIGHT) {
int incomingRelayStatus = message.getInt();
if (incomingRelayStatus == 1) {
irsend.send(NEC, 0x1EE17887, 32); // Vol up yamaha ysp-900
} else {
irsend.send(NEC, 0x1EE1F807, 32); // Vol down yamaha ysp-900
}
// Start receiving ir again...
irrecv.enableIRIn();
} ""
-
Found the answer in this tread
https://forum.mysensors.org/topic/1086/getting-childid-from-incomingmessage/6
Will try this
if (message.type==V_LIGHT && message.sensor==3)