Page 2 of 2

Re: Multi-Station Feature released today

Posted: Fri Sep 18, 2020 9:35 am
by jasonmfarrow
The update to the latest firmware Meteobridge 4.4 (Sep 17 2020, build 3323), FW 1.4 (on NanoSD) has not restored this feature.
Screenshot 2020-09-18 at 18 September 2020 08.34.10 am.png
Screenshot 2020-09-18 at 18 September 2020 08.34.10 am.png (185.58 KiB) Viewed 1212 times

Re: Multi-Station Feature released today

Posted: Sat Sep 19, 2020 6:10 pm
by admin
should be fixed for NANOs with just released update.

Re: Multi-Station Feature released today

Posted: Mon Sep 21, 2020 9:39 pm
by jasonmfarrow
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:

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
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.
Screenshot 2020-09-21 at 21 September 2020 20.19.08 pm.png
Screenshot 2020-09-21 at 21 September 2020 20.19.08 pm.png (188.06 KiB) Viewed 1185 times