From 757ecfe5e89183080edd8ac52e7d1171e14bd8a0 Mon Sep 17 00:00:00 2001 From: Marvin Wichmann Date: Mon, 25 Oct 2021 05:32:31 +0200 Subject: [PATCH] Add entity category to knx (#19953) --- source/_integrations/knx.markdown | 55 +++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/source/_integrations/knx.markdown b/source/_integrations/knx.markdown index e7855072653..302c0953692 100644 --- a/source/_integrations/knx.markdown +++ b/source/_integrations/knx.markdown @@ -424,6 +424,11 @@ context_timeout: required: false type: float default: None +entity_category: + description: The [category](https://developers.home-assistant.io/docs/core/entity#generic-properties) of the entity. + required: false + type: string + default: None {% endconfiguration %} ### Support for automations @@ -724,6 +729,11 @@ max_temp: description: Override the maximum temperature. required: false type: float +entity_category: + description: The [category](https://developers.home-assistant.io/docs/core/entity#generic-properties) of the entity. + required: false + type: string + default: None {% endconfiguration %} ## Cover @@ -810,6 +820,11 @@ device_class: description: Sets the [class of the device](/integrations/cover/), changing the device state and icon that is displayed on the frontend. required: false type: string +entity_category: + description: The [category](https://developers.home-assistant.io/docs/core/entity#generic-properties) of the entity. + required: false + type: string + default: None {% endconfiguration %} ## Fan @@ -855,6 +870,11 @@ max_step: description: The maximum amount of steps for a step-controlled fan. If set, the integration will convert percentages to steps automatically. required: false type: integer +entity_category: + description: The [category](https://developers.home-assistant.io/docs/core/entity#generic-properties) of the entity. + required: false + type: string + default: None {% endconfiguration %} ## Light @@ -998,6 +1018,11 @@ max_kelvin: required: false type: integer default: 6000 +entity_category: + description: The [category](https://developers.home-assistant.io/docs/core/entity#generic-properties) of the entity. + required: false + type: string + default: None {% endconfiguration %} Many KNX devices can change their state internally without a message to the switch address on the KNX bus, e.g., if you configure a scene or a timer on a channel. The optional `state_address` can be used to inform Home Assistant about these state changes. If a KNX message is seen on the bus addressed to the given `state_address` (in most cases from the light actuator), it will overwrite the state of the object. @@ -1186,6 +1211,11 @@ mode: required: false type: string default: auto +entity_category: + description: The [category](https://developers.home-assistant.io/docs/core/entity#generic-properties) of the entity. + required: false + type: string + default: None {% endconfiguration %} ## Scene @@ -1214,6 +1244,11 @@ name: description: A name for this device used within Home Assistant. required: false type: string +entity_category: + description: The [category](https://developers.home-assistant.io/docs/core/entity#generic-properties) of the entity. + required: false + type: string + default: None {% endconfiguration %} ## Select @@ -1299,6 +1334,11 @@ sync_state: required: false type: [boolean, string, integer] default: true +entity_category: + description: The [category](https://developers.home-assistant.io/docs/core/entity#generic-properties) of the entity. + required: false + type: string + default: None {% endconfiguration %} ## Sensor @@ -1355,6 +1395,11 @@ state_class: description: Sets the [state_class](https://developers.home-assistant.io/docs/core/entity/sensor#available-state-classes) of the sensor. required: false type: string +entity_category: + description: The [category](https://developers.home-assistant.io/docs/core/entity#generic-properties) of the entity. + required: false + type: string + default: None {% endconfiguration %} ### Value Types @@ -1563,6 +1608,11 @@ respond_to_read: required: false type: boolean default: false +entity_category: + description: The [category](https://developers.home-assistant.io/docs/core/entity#generic-properties) of the entity. + required: false + type: string + default: None {% endconfiguration %} The optional `state_address` can be used to inform Home Assistant about state changes not triggered by a telegram to the `address` e.g., if you configure a timer on a channel. If a KNX message is seen on the bus addressed to the given state address, this will overwrite the state of the switch object. @@ -1659,6 +1709,11 @@ sync_state: required: false type: boolean default: true +entity_category: + description: The [category](https://developers.home-assistant.io/docs/core/entity#generic-properties) of the entity. + required: false + type: string + default: None {% endconfiguration %} ## Troubleshooting / Common issues