mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-10 15:11:59 +01:00
[fineoffsetweatherstation] Fix QuantityType for rain-rate (#14039)
A community member realized, that the used unit for rain-rate was wrong (https://community.openhab.org/t/fine-offset-weather-station-binding-discussion/134167/153) Rain rate is measured in mm/h and so it is not a `VolumetricFlowRate` but a `Speed`. Additionally, I added some details to the doc. Signed-off-by: Andreas Berger <andreas@berger-freelancer.com>
This commit is contained in:
parent
af16d52e9b
commit
14c8b3972c
@ -75,7 +75,11 @@ In this case you have to configure a service to which the data is sent.
|
||||
Please try if here the [IPObserver binding](https://www.openhab.org/addons/bindings/ipobserver/) offers an alternative.
|
||||
Known weather stations not compatible with this binding:
|
||||
|
||||
- [WH3000](https://community.openhab.org/t/fine-offset-weather-station-binding-beta-and-discussion/134167/52?u=andy2003)
|
||||
- [WH3000](https://community.openhab.org/t/fine-offset-weather-station-binding-beta-and-discussion/134167/52)
|
||||
- [Ecowitt HP2564C](https://community.openhab.org/t/fine-offset-weather-station-binding-discussion/134167/134)
|
||||
|
||||
If your gateway does not support reading out live-data, a second gateway can be used to read out the sensors for openHAB.
|
||||
[This approach has been tested by a community member](https://community.openhab.org/t/fine-offset-weather-station-binding-discussion/134167/151).
|
||||
|
||||
## Discovery
|
||||
|
||||
@ -157,7 +161,7 @@ Valid sensors:
|
||||
### `gateway` Channels
|
||||
|
||||
| Channel | Type | Read/Write | Description |
|
||||
|---------------------------------------|-------------------------------|------------|------------------------------------------------|
|
||||
|---------------------------------------|----------------------|------------|------------------------------------------------|
|
||||
| temperature-indoor | Number:Temperature | R | Indoor Temperature |
|
||||
| temperature-outdoor | Number:Temperature | R | Outdoor Temperature |
|
||||
| temperature-dew-point | Number:Temperature | R | Dew Point |
|
||||
@ -171,7 +175,7 @@ Valid sensors:
|
||||
| speed-wind | Number:Speed | R | Wind Speed |
|
||||
| speed-gust | Number:Speed | R | Gust Speed |
|
||||
| rain-event | Number:Length | R | Amount of Rainfall At the last Rain |
|
||||
| rain-rate | Number:VolumetricFlowRate | R | Rainfall Rate |
|
||||
| rain-rate | Number:Speed | R | Rainfall Rate |
|
||||
| rain-hour | Number:Length | R | Rainfall Current Hour |
|
||||
| rain-day | Number:Length | R | Rainfall Today |
|
||||
| rain-week | Number:Length | R | Rainfall this Week |
|
||||
@ -269,7 +273,7 @@ Valid sensors:
|
||||
| leaf-wetness-channel-6 | Number:Dimensionless | R | Leaf Moisture Channel 6 |
|
||||
| leaf-wetness-channel-7 | Number:Dimensionless | R | Leaf Moisture Channel 7 |
|
||||
| leaf-wetness-channel-8 | Number:Dimensionless | R | Leaf Moisture Channel 8 |
|
||||
| piezo-rain-rate | Number:VolumetricFlowRate | R | Piezo - Rainfall Rate |
|
||||
| piezo-rain-rate | Number:Speed | R | Piezo - Rainfall Rate |
|
||||
| piezo-rain-event | Number:Length | R | Piezo - Amount of Rainfall At the last Rain |
|
||||
| piezo-rain-hour | Number:Length | R | Piezo - Rainfall Current Hour |
|
||||
| piezo-rain-day | Number:Length | R | Piezo - Rainfall Today |
|
||||
@ -333,7 +337,7 @@ Number:Illuminance weather_illumination "Light intensity"
|
||||
Number:Intensity weather_irradiation_uv "UV radiation" <Sun> (gOutdoor) ["Measurement", "Light"] { channel="fineoffsetweatherstation:gateway:3906700515:irradiation-uv" }
|
||||
Number:Dimensionless weather_uv_index "UV Index" <Sun> (gOutdoor) ["Measurement", "Light"] { channel="fineoffsetweatherstation:gateway:3906700515:uv-index" }
|
||||
Number:Speed weather_max_day "Maximum wind speed today" <Wind> (gOutdoor) ["Measurement", "Wind"] { channel="fineoffsetweatherstation:gateway:3906700515:wind-max-day" }
|
||||
Number:VolumetricFlowRate weather_rain_rate "Rainfall rate" <Rain> (gOutdoor) ["Measurement", "Rain"] { channel="fineoffsetweatherstation:gateway:3906700515:rain-rate" }
|
||||
Number:Speed weather_rain_rate "Rainfall rate" <Rain> (gOutdoor) ["Measurement", "Rain"] { channel="fineoffsetweatherstation:gateway:3906700515:rain-rate" }
|
||||
Number:Length weather_rain_day "Rainfall today" <Rain> (gOutdoor) ["Measurement", "Rain"] { channel="fineoffsetweatherstation:gateway:3906700515:rain-day" }
|
||||
Number:Length weather_rain_week "Rainfall this week" <Rain> (gOutdoor) ["Measurement", "Rain"] { channel="fineoffsetweatherstation:gateway:3906700515:rain-week" }
|
||||
Number:Length weather_rain_month "Rainfall this month" <Rain> (gOutdoor) ["Measurement", "Rain"] { channel="fineoffsetweatherstation:gateway:3906700515:rain-month" }
|
||||
|
@ -108,7 +108,7 @@
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="rain-rate">
|
||||
<item-type>Number:VolumetricFlowRate</item-type>
|
||||
<item-type>Number:Speed</item-type>
|
||||
<label>Rain Rate</label>
|
||||
<category>Rain</category>
|
||||
<tags>
|
||||
|
Loading…
Reference in New Issue
Block a user