Author Topic: Meteobridge and SteelSeriesGauges  (Read 533 times)

0 Members and 1 Guest are viewing this topic.

Offline kocher

  • Senior Member
  • **
  • Posts: 85
    • San Sebastian (Spain)
Meteobridge and SteelSeriesGauges
« on: June 02, 2019, 09:55:58 PM »
Greetings to all (especially Ken and Mark)

I'm setting up my Meteobridge Pro to send data to steel style gauges.
These are the directions involved:

http://kocher.es/gauges-ss-basic_copia.php

http://kocher.es/meteobridge-saratoga/MBrealtimegauges.txt

http://kocher.es/meteobridge-saratoga/conds.php?sce=view

Everything works fine, but ...
The pressure indicator has a minimum graduation of 20 (I have configured the pressure unit in Meteobridge as hPa):



The cause of this information is found in "MBrealtimegauges.txt" where these two anomalous values appear:

"pressTL": "1018.1",
"pressTH": "1020.0",
"pressL": "29.83",
"pressH": "30.35",


I can not find a way to modify this data (I think the last two are provided directly by Meteobridge).

I appreciate your help

Greetings from San Sebastian, Spain  :grin:

- Javier
« Last Edit: June 03, 2019, 08:31:14 AM by kocher »
Windows 7 Pr
Davis Vantage Pro Plus f.a.
WeatherLink 6.0.2
Meteotemplate 15.0 Black Currant
CumulusMX
GraphWeather Version 3.0.15


Offline kocher

  • Senior Member
  • **
  • Posts: 85
    • San Sebastian (Spain)
Re: Meteobridge and SteelSeriesGauges
« Reply #1 on: June 03, 2019, 08:37:48 AM »
I think I've solved it by editing the "conds.php" file like this:

Code: [Select]
$JSONdata["press"] = conds_convertBaro($Data[10],$uomBaro,$sBaroUOM); // WD Sample= '30.138 in.'
$JSONdata["pressTL"] = conds_convertBaro($Data[36],$uomBaro,$sBaroUOM); // WD Sample= '30.124 in.'
$JSONdata["pressTH"] = conds_convertBaro($Data[34],$uomBaro,$sBaroUOM); // WD Sample= '30.229 in.'
//$JSONdata["pressL"] = $WX['thb0seapress-amin']; // WD Sample= '26.001'
//$JSONdata["pressH"] = $WX['thb0seapress-amax']; // WD Sample= '30.569'
$JSONdata["pressL"] = conds_convertBaro($Data[36],$uomBaro,$sBaroUOM); // WD Sample= '26.001'
$JSONdata["pressH"] = conds_convertBaro($Data[34],$uomBaro,$sBaroUOM); // WD Sample= '30.569'


Windows 7 Pr
Davis Vantage Pro Plus f.a.
WeatherLink 6.0.2
Meteotemplate 15.0 Black Currant
CumulusMX
GraphWeather Version 3.0.15


 

anything