NetAtmo dashboard for Node-RED
There are few Node-RED nodes for the NetAtmo weather station, most of them return data of the sensors as time series.
I needed something simpler for my chatbot, a way to get fetch all current values from all sensors, something like this
{
"temperature": 27.5,
"co2": 246,
"humidity": 60,
"noise": 38,
"pressure": 1009.5,
"pressureTrend": "stable",
"externalTemperature": 30,
"externalHumidity": 51,
"externalTemperatureTrend": "stable"
}
So I created this node-red-contrib-netatmo-dashboard.
To install
cd $HOME/.node-red
npm install node-red-contrib-netatmo-dashboard
See Netatmo Connect to get an API key.