Adding Listen only device to my system.
-
I'd like to add a Receive only device to get two temperatures from a working sensor box in my system where I can display the values on an LCD display. I think I see how to send data from the sensor box to a node. How do I code the Receive node. Does anyone have any examples of this??
Thanks
-
This is only a partial answer.
You have to implement a function on the node to receive the data: void receive(const MyMessage &message)
Go to this page https://www.mysensors.org/download/sensor_api_20 and scroll down to "Handling incoming radio messages".
I'm pretty sure I have seen someone on this site doing exactly what you are looking for, but I didn't find it when I looked. They had a node with an LCD display they could send text to.
Hope this gets you started : )
-
You can also look at https://www.mysensors.org/build/scene_controller
-
@nagelc thanks for looking and the info.
-
@mfalkvidd Thanks for the info!