@@ -19,11 +19,12 @@ The `knx` component must be configured correctly, see [KNX Component](/component
19
19
20
20
There is currently support for the following KNX data point types:
21
21
22
- | Condition | KNX Datapoint Type | Unit of measurement | Data type |
23
- | :-------------------| :--------------------| :--------------------| :-------------|
24
- | Temperature | 9.001 | °C | 2 Byte Float |
25
- | Speed (Wind speed) | 9.005 | m/s | 2 Byte Float |
26
- | Illuminance (Lux) | 9.004 | Lux | 2 Byte Float |
22
+ | Condition | KNX Datapoint Type | Unit of measurement | Data type |
23
+ | :-------------------| :--------------------| :--------------------| :-------------------------------|
24
+ | Temperature | 9.001 | °C | 2 Byte Float |
25
+ | Speed (Wind speed) | 9.005 | m/s | 2 Byte Float |
26
+ | Illuminance (Lux) | 9.004 | Lux | 2 Byte Float |
27
+ | Percentage | 5.001 | % | 1 Byte Scaled Unsigned Integer |
27
28
28
29
To use your KNX sensor in your installation, add the following to your ` configuration.yaml ` file:
29
30
@@ -43,13 +44,18 @@ sensor:
43
44
name : Lux
44
45
type : illuminance
45
46
address : 1/0/1
47
+
48
+ - platform : knx
49
+ name : percent
50
+ type : percentage
51
+ address : 1/0/4
46
52
` ` `
47
53
48
54
Configuration variables:
49
55
50
56
- **type** (*Required*): The type of the sensor. See table above for available options.
51
57
- **address** (*Required*): The address of the sensor on the bus.
52
58
- **name** (*Optional*): The name to use in the frontend.
53
- - **minimum** (*Optional*): Minimum sensor value who gets processed. Defaults to a hardcoded default values .
54
- - **maximum** (*Optional*): Maximum sensor value who gets processed. Defaults to a hardcoded default.
59
+ - **minimum** (*Optional*): Minimum sensor value - defaults to a hardcoded default value .
60
+ - **maximum** (*Optional*): Maximum sensor value - defaults to a hardcoded default value .
55
61
0 commit comments