Page 1 of 1

netatmo T, H and P values into meteotemplatelive?

Posted: Mon Apr 10, 2023 11:01 am
by Julius
My station sources have changed.
We now run
- a bare unshielded netatmo outdoor unit inside a Stevenson cage
- an ecowitt wittboy on top of a mast, and
- an old WF tempest at grasslevel.

I run a meteobridge providing the ecowitt and tempest data to the MT api, along with some extra sensors (soil H, lightning) and such.
But I would like to push the netatmo T and RH and preferably also P into the mt live.txt as well, and have them numbered as T2, H2 and P2 in there, so as to be able to separate them from T and T1 etc that the meteobridge sends to the api.
How do I accomplish that?

Re: netatmo T, H and P values into meteotemplatelive?

Posted: Mon Apr 10, 2023 7:31 pm
by Julius
Never mind, I edited the update.php values where they are dropped into the api

Code: Select all

$rawUpdate['T3'] = $module['dashboard_data']['Temperature']; // temperature in deg C
$rawUpdate['H3'] = $module['dashboard_data']['Humidity'];
so it works now..