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)
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login