Hello,
is it possible to use a MySensor Node with IR receiver and transmitter see: MySensor-IR
I don’t find the protocol in the Device config site.
MySensor with IR
Hello,
is it possible to use a MySensor Node with IR receiver and transmitter see: MySensor-IR
I don’t find the protocol in the Device config site.
@V1per
Yes you can use it in Rules with custom commands for nearly every code you want.
Rules
Sending custom msg i.e V_VAR1 to V_VAR5 to mysensors node using "send custom “V_VAR1” nodeid: “id” sensorid: “id” cmdcode: “value”
For sending IR hex code to mysensors node use send custom “V_IR_SEND” command in action text box. exp. send custom “V_IR_SEND” nodeid: “id” sensorid: “id” cmdcode: “0x342333”
But you need to handle the codes in Arduino maybe a bit different.
In my case I used it to send color information to a RGBW dimmer actor.
if anything happens ..
send custom "V_VAR1" nodeid: "13" sensorid: "2" cmdcode: "$myledlight1.color"
where myledlight1.color can be defined like this:
... then set myledlight1 to #FFBF10
Thank you I will test it as soon as my IR-Sender from China is here.