If I want to upload additional data such as soil moisture to WOW, is it
just a matter of adding it to:
class WOWThread(AmbientThread):
"""Class for posting to the WOW variant of the Ambient protocol."""
# Types and formats of the data to be published:
_FORMATS = {'dateTime': 'dateutc=%s',
'barometer': 'baromin=%.3f',
'outTemp': 'tempf=%.1f',
'outHumidity': 'humidity=%.0f',
'windSpeed': 'windspeedmph=%.0f',
'windDir': 'winddir=%.0f',
'windGust': 'windgustmph=%.0f',
'windGustDir': 'windgustdir=%.0f',
'dewpoint': 'dewptf=%.1f',
'hourRain': 'rainin=%.2f',
'dayRain': 'dailyrainin=%.3f'}
in restx.py?
--
You received this message because you are subscribed to the Google Groups
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/weewx-user/b8a75d73-a8d8-1bdb-d56f-db51052d9d10%40gmail.com.