Hi all I am intercepting packages from my Bresser weather station to my home server via IPtables, on port 3010. Then, by using the Felddy docker container, which combines WeeWx, MQTT and Interceptor, I am able to fetch the data (original for Wunderground) and send it via MQTT to my home assistant. This container is also updating Wunderground.
My main challenge is the rain parameter, as you can see from the logs below. At first, he is ignoring the unrecognized parameter rainin, then he is NOT uploading the rain data to Wunderground. I do have a couple of questions: - I am assuming the rain calculations are correct, but why is there no rain data sent to Wunderground? - why does the docker send the data twice to Wunderground, via Ambient and via wunderground-RF? - Is there a way, in case Felddy docker container is not updated, to update myself to WeeWx v5 and to include other items, such as HTML, Skins,, ... Thanks, Kris Some of my settings: [Interceptor] # This section is for the network traffic interceptor driver. # The driver to use: driver = user.interceptor device_type = wu-client mode = listen address = my local IP address of the server port = 3010 [[Wunderground]] enable = true station = 'IHEUSD37' password = my_key' rapidfire = true The logs: Jul 31 07:08:18 weewx[18] DEBUG user.interceptor: GET: ID=IHEUSD37&PASSWORD=XXXX&action=updateraww&realtime=1&rtfreq=5&dateutc=now&baromin=30.03&tempf=67.8&dewptf=65.4&humidity=92&windspeedmph=0.0&windgustmph=0.0&winddir=0&rainin=0.0&dailyrainin=0.0&indoortempf=80.4&indoorhumidity=59 Jul 31 07:08:18 weewx[18] DEBUG user.interceptor: raw data: ID=IHEUSD37&PASSWORD=XXX&action=updateraww&realtime=1&rtfreq=5&dateutc=now&baromin=30.03&tempf=67.8&dewptf=65.4&humidity=92&windspeedmph=0.0&windgustmph=0.0&winddir=0&rainin=0.0&dailyrainin=0.0&indoortempf=80.4&indoorhumidity=59 Jul 31 07:08:18 weewx[18] DEBUG user.interceptor: using rain_total 0.0 from dailyrainin Jul 31 07:08:18 weewx[18] DEBUG user.interceptor: ignored parameter ID=IHEUSD37 Jul 31 07:08:18 weewx[18] DEBUG user.interceptor: ignored parameter PASSWORD=XXXXXXXX Jul 31 07:08:18 weewx[18] DEBUG user.interceptor: ignored parameter action=updateraww Jul 31 07:08:18 weewx[18] DEBUG user.interceptor: ignored parameter realtime=1 Jul 31 07:08:18 weewx[18] DEBUG user.interceptor: ignored parameter rtfreq=5 Jul 31 07:08:18 weewx[18] INFO user.interceptor: unrecognized parameter rainin=0.0 Jul 31 07:08:18 weewx[18] DEBUG user.interceptor: raw packet: {'dateTime': 1722409698, 'usUnits': 1, 'rain_total': 0.0, 'barometer': 30.03, 'temperature_out': 67.8, 'dewpoint': 65.4, 'humidity_out': 92.0, 'wind_speed': 0.0, 'wind_gust': 0.0, 'wind_dir': 0.0, 'temperature_in': 80.4, 'humidity_in': 59.0, 'rain': 0.0} Jul 31 07:08:18 weewx[18] DEBUG user.interceptor: mapped packet: {'dateTime': 1722409698, 'usUnits': 1, 'barometer': 30.03, 'outHumidity': 92.0, 'inHumidity': 59.0, 'outTemp': 67.8, 'inTemp': 80.4, 'windSpeed': 0.0, 'windGust': 0.0, 'windDir': 0.0, 'dewpoint': 65.4, 'rain': 0.0} Jul 31 07:08:18 weewx[18] DEBUG user.mqtt: data: {'dateTime': '1722409698.0', 'barometer_mbar': '1016.9323640926025', 'outHumidity': '92.0', 'inHumidity': '59.0', 'outTemp_C': '19.888888888888886', 'inTemp_C': '26.888888888888893', 'windSpeed_kph': '0.0', 'windGust_kph': '0.0', 'dewpoint_C': '18.555555555555557', 'dayRain_mm': '0.0', 'appTemp_C': '22.921167614995962', 'cloudbase_meter': '208.17462880033375', 'heatindex_C': '20.335555555555555', 'humidex_C': '26.3052624710459', 'inDewpoint_C': '18.186680066004232', 'rainRate_mm_per_hour': '0.0', 'windchill_C': '19.888888888888886', 'usUnits': '16.0'} Jul 31 07:08:18 weewx[18] DEBUG weewx.restx: Ambient: url: https://rtupdate.wunderground.com/weatherstation/updateweatherstation.php?action=updateraw&ID=IHEUSD37&PASSWORD=XXX&softwaretype=weewx-4.10.2&baromin=30.030&dateutc=2024-07-31%2007%3A08%3A18&dewptf=65.4&humidity=092&tempf=67.8&realtime=1&rtfreq=2.5&windgustmph=0.0&windspeedmph=0.0 Jul 31 07:08:18 weewx[18] DEBUG weewx.restx: Wunderground-RF url: 'https://rtupdate.wunderground.com/weatherstation/updateweatherstation.php?action=updateraw&ID=IHEUSD37&PASSWORD=XXX&softwaretype=weewx-4.10.2&baromin=30.030&dateutc=2024-07-31%2007%3A08%3A18&dewptf=65.4&humidity=092&tempf=67.8&realtime=1&rtfreq=2.5&windgustmph=0.0&windspeedmph=0.0' Jul 31 07:08:18 weewx[18] INFO weewx.restx: MQTT: Published record 2024-07-31 07:08:18 UTC (1722409698) Jul 31 07:08:18 weewx[18] INFO weewx.restx: Wunderground-RF: Published record 2024-07-31 07:08:18 UTC (1722409698) -- 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 weewx-user+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/e16eee7a-8232-4d53-b191-46ca56494c1fn%40googlegroups.com.