I have several mysensor nodes collecting data around my house and everything works great! They are logged in the database and its all nice and easy to see the latest temperatures/humidities/air pressures etc. in the webinterface.
But I have been thinking of building a dedicated node with lcd screen to show the latest measurements from other nodes in a nice way. My first thought was to use the request function in the mysensors library but after some reading I understood that it can be used in two ways:
- requesting data from gateway, but only from its own child nodes
- requesting data directly from another node (but the other node need to be powered up and ready to respond)
Option one is not what I'm after since i was planning to show measurements from other nodes. And option two is not really an option fo rmy battery-powered sensor nodes.
As EasyIoT has the gateway/controller combined together with the database, I figured a nice feature would be to be able to request data from another node directly from the gateway ( fetching from database?) Thus, no need to communicate directly with the other sensor node.
I have several mysensor nodes collecting data around my house and everything works great! They are logged in the database and its all nice and easy to see the latest temperatures/humidities/air pressures etc. in the webinterface.
But I have been thinking of building a dedicated node with lcd screen to show the latest measurements from other nodes in a nice way. My first thought was to use the request function in the mysensors library but after some reading I understood that it can be used in two ways:
- requesting data from gateway, but only from its own child nodes
- requesting data directly from another node (but the other node need to be powered up and ready to respond)
Option one is not what I'm after since i was planning to show measurements from other nodes. And option two is not really an option fo rmy battery-powered sensor nodes.
As EasyIoT has the gateway/controller combined together with the database, I figured a nice feature would be to be able to request data from another node directly from the gateway ( fetching from database?) Thus, no need to communicate directly with the other sensor node.
Would this be possible??
The easiest way is to send data to other node in automation module. When value is received from one sensor send this value to other sensor. I have temperature sensor outdoor and I'm displaying outdoor temperature on my thermostat which is another node.