
Lufft has launched an affordable (not cheap) solid state weather station, the Lufft WS10. The WS10 has sensors for: air temperature, relative humidity, air pressure, wind direction / velocity, precipitation amount / intensity / type, UV index, sun direction, brightness, twilight and radiation. More information here: Lufft WS10: An affordable solid state IP weather station with WiFi
The device is part of the WS series of products, of which WS600 is supported by Meteohub. Like the WS600 the model supports the UMB protocol from Lufft (NOTE: Over WiFi the WS10 only supports binary, not UMB ASCII 2.0 - this only works via RS-485). In addition to the RS-485 connection, the device comes ready with a WiFi module allowing TCP/IP communications with just power to the sensor unit. I installed Meteohub 5.0x on a Raspberry Pi 2 and managed to connect to the device over WiFi with the following settings:

From the logs I could see Meteohub successfully device connected to the Lufft WS10:
Code: Select all
logger (31.10.2018 17:57:22): connect station 0 (WS600 via TCP/IP Meteohub).
logger (31.10.2018 17:57:22): station 0 (WS600), compact weather station device 7-1 activated: WS10
logger (31.10.2018 17:57:22): station 0 (WS600), compact weather station device 7-1 identifies as: No. 29, Project 1601, HW 0.1, SW 0.12, device 5
logger (31.10.2018 17:57:22): station 0 (WS600), compact weather station device 7-1 provides 11 channels: 100, 110, 200, 300, 305, 400, 500, 700, 600, 800, 900
Code: Select all
logger (31.10.2018 17:57:42): station 0 (WS600), unexpected 0 bytes.
logger (31.10.2018 17:57:42): disconnect station 0 (WS600): response without data
l
version 4.8c:
Code: Select all
class 7, id 1, channel 100: temperature in degrees celsius
class 7, id 1, channel 110: dew point in degrees celsius
class 7, id 1, channel 200: relative humidity in %
class 7, id 1, channel 300: pressure in hpa
class 7, id 1, channel 305: sealevel pressure in hpa
class 7, id 1, channel 460: average wind speed in m/s
class 7, id 1, channel 400: wind speed in m/s
class 7, id 1, channel 500: wind direction in degrees
class 7, id 1, channel 700: precipitation flag: 0 none, 60 rain, 70 snow
class 7, id 1, channel 600: rain total mm
class 7, id 1, channel 1053: rain rate mm/h
class 6, id 1, channel 900: solar radiation in wqm
- There is no "average wind speed in m/s" (channel 460)
- There are more options for "precipitation flag" (see link below)
- The channel for "rain total" is on channel 620 (percipitation absolute mm)
- The channel for "rain rate mm/h" is on channel 820 (channel 1053 does not exist)
I am prepared to grant public access to the sensor to the developers if they wish to look closer into it.