Multi-Station Feature released today
Moderator: Mattk
- jasonmfarrow
- Gold Boarder
- Posts: 249
- Joined: Mon May 25, 2020 4:21 pm
- Contact:
Re: Multi-Station Feature released today
The update to the latest firmware Meteobridge 4.4 (Sep 17 2020, build 3323), FW 1.4 (on NanoSD) has not restored this feature.
Re: Multi-Station Feature released today
should be fixed for NANOs with just released update.
- jasonmfarrow
- Gold Boarder
- Posts: 249
- Joined: Mon May 25, 2020 4:21 pm
- Contact:
Re: Multi-Station Feature released today
This is now working.
Here is some verified working example code that gathers data from a website/server http request and stores the results. This example was air quality data:
For preference use an editor that does not put CR/LF (carriage return, line feed) on the end of each line. If forgotten it will be removed when the script (called: <yourscript>.plugin) is used.
The primary weather sensor uses th0temp, th0dew, etc. If your user defined sensor/plugin is the first additional weather sensor then values will be th1temp, th1dew, etc. In the case of air quality where there are three values to store, the Meteobridge will report them as air1!0pm, air1!1pm and air1!2pm (for PM1.0, PM2.5 and PM10 respectively. The "1" in this case represented that it was the first additional sensor.
You will be able to see the data in the Raw Sensor Data of the meteobridge. It will also be available in history. However, you'll have to create your own chart template if you want to chart the data.
Here is some verified working example code that gathers data from a website/server http request and stores the results. This example was air quality data:
Code: Select all
#!/bin/sh
#
while true;
do
aqi25=$(wget -qO- http://10.10.10.202/aqi25.data)
echo "air1 $aqi25"
aqi10=$(wget -qO- http://10.10.10.202/aqi10.data)
echo "air2 $aqi10"
sleep 300
done
The primary weather sensor uses th0temp, th0dew, etc. If your user defined sensor/plugin is the first additional weather sensor then values will be th1temp, th1dew, etc. In the case of air quality where there are three values to store, the Meteobridge will report them as air1!0pm, air1!1pm and air1!2pm (for PM1.0, PM2.5 and PM10 respectively. The "1" in this case represented that it was the first additional sensor.
You will be able to see the data in the Raw Sensor Data of the meteobridge. It will also be available in history. However, you'll have to create your own chart template if you want to chart the data.