[Documentation] Markdown improvements for bindings a to e (#13859)
Signed-off-by: Jerome Luckenbach <github@luckenba.ch>
This commit is contained in:
committed by
GitHub
parent
72efc1cfed
commit
caf71f72e6
@@ -1,22 +1,22 @@
|
||||
# DanfossAirUnit Binding
|
||||
|
||||
This binding supports controlling and monitoring [Danfoss air units](https://www.danfoss.com/en/products/energy-recovery-devices/dhs/heat-recovery-ventilation/air-units/) via Ethernet connection.
|
||||
|
||||
|
||||
## Supported Things
|
||||
|
||||
This binding has been tested/reported to work with the Danfoss Air w2 / a2 / a3 devices.
|
||||
This binding has been tested/reported to work with the Danfoss Air w2 / a2 / a3 devices.
|
||||
|
||||
## Discovery
|
||||
|
||||
Air units in the LAN are automatically discovered via broadcast and added to the Inbox.
|
||||
Air units in the LAN are automatically discovered via broadcast and added to the Inbox.
|
||||
|
||||
## Thing Configuration
|
||||
|
||||
These are the available configuration parameters:
|
||||
|
||||
- `host` Hostname/IP of the air unit (automatically set by discovery service)
|
||||
- `refreshInterval` Time (in seconds) between monitoring requests to the air unit. Smaller values mean more network load, typically set between a few seconds and a minute. Defaults to 10 seconds.
|
||||
- `updateUnchangedValuesEveryMillis` Minimum time between state updates sent to the event bus for a particular channel when the state of the channel didn't change. This should avoid spamming the event bus with unnecessary updates. When set to 0, all channel state are updated every time the air unit requests are sent (see refresh interval). When set to a non zero value, unchanged values are only reported after the configured timespan has passed. Changed values are always sent to the event bus. Defaults to 60.000 (one minute), so updates are sent every minute or if the state of the channel changes.
|
||||
- `refreshInterval` Time (in seconds) between monitoring requests to the air unit. Smaller values mean more network load, typically set between a few seconds and a minute. Defaults to 10 seconds.
|
||||
- `updateUnchangedValuesEveryMillis` Minimum time between state updates sent to the event bus for a particular channel when the state of the channel didn't change. This should avoid spamming the event bus with unnecessary updates. When set to 0, all channel state are updated every time the air unit requests are sent (see refresh interval). When set to a non zero value, unchanged values are only reported after the configured timespan has passed. Changed values are always sent to the event bus. Defaults to 60.000 (one minute), so updates are sent every minute or if the state of the channel changes.
|
||||
|
||||
## Channels
|
||||
|
||||
@@ -43,7 +43,6 @@ These are the available configuration parameters:
|
||||
| filter_life | service | Number | RO | Remaining life of filter until exchange is necessary (percentage) |
|
||||
| filter_period | service | Number | RW | Number of months between filter replacements (between 3 and 12). This value affects calculation of filter_life by the unit, and might get overwritten by Air Dial or Link CC Controller. |
|
||||
|
||||
|
||||
## Full Example
|
||||
|
||||
### Things
|
||||
@@ -55,7 +54,7 @@ You can also manually configure your air unit in case you don't want to use auto
|
||||
(e. g. if you want to have a portable configuration):
|
||||
Create a new file, e. g. `danfoss.things`, in your _things_ configuration folder:
|
||||
|
||||
```
|
||||
```java
|
||||
Thing danfossairunit:airunit:myairunit [host="192.168.0.7",
|
||||
refreshInterval=5,
|
||||
updateUnchangedValuesEveryMillis=30000]
|
||||
@@ -63,7 +62,7 @@ updateUnchangedValuesEveryMillis=30000]
|
||||
|
||||
### Items
|
||||
|
||||
```
|
||||
```java
|
||||
Dimmer DanfossHRV_ManualFanStep "Manual Fan Step [%s]" {channel = "danfossairunit:airunit:myairunit:main#manual_fan_step"}
|
||||
Number DanfossHRV_SupplyFanSpeed "Supply Fan Speed" {channel = "danfossairunit:airunit:myairunit:main#supply_fan_speed"}
|
||||
Number DanfossHRV_ExtractFanSpeed "Extract Fan Speed" {channel = "danfossairunit:airunit:myairunit:main#extract_fan_speed"}
|
||||
@@ -82,7 +81,7 @@ Number DanfossHRV_FilterPeriod "Filter period" { channel = "danfossairunit:airun
|
||||
|
||||
### Sitemap
|
||||
|
||||
```
|
||||
```perl
|
||||
sitemap danfoss label="Danfoss" {
|
||||
Frame label="Control" {
|
||||
Selection item=DanfossHRV_Mode mappings=[DEMAND="Demand", OFF="Off", PROGRAM="Program", MANUAL="Manual"]
|
||||
|
||||
Reference in New Issue
Block a user