mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 07:17:14 +00:00
parent
857e8be7ab
commit
7d90ea212f
@ -19,11 +19,12 @@ The `knx` component must be configured correctly, see [KNX Component](/component
|
|||||||
|
|
||||||
There is currently support for the following KNX data point types:
|
There is currently support for the following KNX data point types:
|
||||||
|
|
||||||
| Condition | KNX Datapoint Type | Unit of measurement | Data type |
|
| Condition | KNX Datapoint Type | Unit of measurement | Data type |
|
||||||
| :-------------------|:--------------------|:--------------------|:-------------|
|
| :-------------------|:--------------------|:--------------------|:-------------------------------|
|
||||||
| Temperature | 9.001 | °C | 2 Byte Float |
|
| Temperature | 9.001 | °C | 2 Byte Float |
|
||||||
| Speed (Wind speed) | 9.005 | m/s | 2 Byte Float |
|
| Speed (Wind speed) | 9.005 | m/s | 2 Byte Float |
|
||||||
| Illuminance (Lux) | 9.004 | Lux | 2 Byte Float |
|
| Illuminance (Lux) | 9.004 | Lux | 2 Byte Float |
|
||||||
|
| Percentage | 5.001 | % | 1 Byte Scaled Unsigned Integer |
|
||||||
|
|
||||||
To use your KNX sensor in your installation, add the following to your `configuration.yaml` file:
|
To use your KNX sensor in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
@ -43,6 +44,11 @@ sensor:
|
|||||||
name: Lux
|
name: Lux
|
||||||
type: illuminance
|
type: illuminance
|
||||||
address: 1/0/1
|
address: 1/0/1
|
||||||
|
|
||||||
|
- platform: knx
|
||||||
|
name: percent
|
||||||
|
type: percentage
|
||||||
|
address: 1/0/4
|
||||||
```
|
```
|
||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
@ -50,6 +56,6 @@ Configuration variables:
|
|||||||
- **type** (*Required*): The type of the sensor. See table above for available options.
|
- **type** (*Required*): The type of the sensor. See table above for available options.
|
||||||
- **address** (*Required*): The address of the sensor on the bus.
|
- **address** (*Required*): The address of the sensor on the bus.
|
||||||
- **name** (*Optional*): The name to use in the frontend.
|
- **name** (*Optional*): The name to use in the frontend.
|
||||||
- **minimum** (*Optional*): Minimum sensor value who gets processed. Defaults to a hardcoded default values.
|
- **minimum** (*Optional*): Minimum sensor value - defaults to a hardcoded default value.
|
||||||
- **maximum** (*Optional*): Maximum sensor value who gets processed. Defaults to a hardcoded default.
|
- **maximum** (*Optional*): Maximum sensor value - defaults to a hardcoded default value.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user