mirror of
https://github.com/adrianjagielak/home-assistant-futurehome.git
synced 2025-09-13 15:47:08 +00:00
280 lines
8.8 KiB
TypeScript
280 lines
8.8 KiB
TypeScript
/**
|
|
* Represents a MQTT Cover component for Home Assistant MQTT Discovery.
|
|
*
|
|
* The `mqtt` cover platform allows you to control an MQTT cover (such as blinds, a roller shutter or a garage door).
|
|
*
|
|
* A cover entity can be in states (`open`, `opening`, `closed`, `closing` or `stopped`).
|
|
* See the full documentation at https://www.home-assistant.io/integrations/cover.mqtt/
|
|
*/
|
|
export interface CoverComponent {
|
|
/**
|
|
* Must be `cover`.
|
|
* Only allowed and required in [MQTT auto discovery device messages](https://www.home-assistant.io/integrations/mqtt/#device-discovery-payload).
|
|
*/
|
|
platform: 'cover';
|
|
|
|
/**
|
|
* An ID that uniquely identifies this cover.
|
|
* If two covers have the same unique ID, Home Assistant will raise an exception.
|
|
* Required when used with device-based discovery.
|
|
*/
|
|
unique_id: string;
|
|
|
|
/**
|
|
* The MQTT topic to publish commands to control the cover.
|
|
*/
|
|
command_topic?: string;
|
|
|
|
/**
|
|
* Sets the [class of the device](https://www.home-assistant.io/integrations/cover/#device_class),
|
|
* changing the device state and icon that is displayed on the frontend.
|
|
* The `device_class` can be `null`.
|
|
*/
|
|
device_class?: string | null;
|
|
|
|
/**
|
|
* Flag which defines if the entity should be enabled when first added.
|
|
* Default: true
|
|
*/
|
|
enabled_by_default?: boolean;
|
|
|
|
/**
|
|
* The encoding of the payloads received and published messages.
|
|
* Set to `""` to disable decoding of incoming payload.
|
|
* Default: "utf-8"
|
|
*/
|
|
encoding?: string;
|
|
|
|
/**
|
|
* The [category](https://developers.home-assistant.io/docs/core/entity#generic-properties) of the entity.
|
|
*/
|
|
entity_category?: string;
|
|
|
|
/**
|
|
* Picture URL for the entity.
|
|
*/
|
|
entity_picture?: string;
|
|
|
|
/**
|
|
* [Icon](https://www.home-assistant.io/docs/configuration/customizing-devices/#icon) for the entity.
|
|
*/
|
|
icon?: string;
|
|
|
|
/**
|
|
* Defines a [template](https://www.home-assistant.io/docs/configuration/templating/#using-value-templates-with-mqtt)
|
|
* to extract the JSON dictionary from messages received on the `json_attributes_topic`.
|
|
* Usage example can be found in [MQTT sensor](https://www.home-assistant.io/integrations/sensor.mqtt/#json-attributes-template-configuration) documentation.
|
|
*/
|
|
json_attributes_template?: string;
|
|
|
|
/**
|
|
* The MQTT topic subscribed to receive a JSON dictionary payload and then set as sensor attributes.
|
|
* Usage example can be found in [MQTT sensor](https://www.home-assistant.io/integrations/sensor.mqtt/#json-attributes-topic-configuration) documentation.
|
|
*/
|
|
json_attributes_topic?: string;
|
|
|
|
/**
|
|
* The name of the cover.
|
|
* Can be set to `null` if only the device name is relevant.
|
|
* Default: "MQTT Cover"
|
|
*/
|
|
name?: string | null;
|
|
|
|
/**
|
|
* Used instead of `name` for automatic generation of `entity_id`.
|
|
*/
|
|
object_id?: string;
|
|
|
|
/**
|
|
* Flag that defines if switch works in optimistic mode.
|
|
* Default: `false` if `state_topic` or `position_topic` defined, else `true`.
|
|
*/
|
|
optimistic?: boolean;
|
|
|
|
/**
|
|
* The payload that represents the online state.
|
|
* Default: "online"
|
|
*/
|
|
payload_available?: string;
|
|
|
|
/**
|
|
* The command payload that closes the cover.
|
|
* Set to `null` to disable the close command.
|
|
* Default: "CLOSE"
|
|
*/
|
|
payload_close?: string | null;
|
|
|
|
/**
|
|
* The payload that represents the offline state.
|
|
* Default: "offline"
|
|
*/
|
|
payload_not_available?: string;
|
|
|
|
/**
|
|
* The command payload that opens the cover.
|
|
* Set to `null` to disable the open command.
|
|
* Default: "OPEN"
|
|
*/
|
|
payload_open?: string | null;
|
|
|
|
/**
|
|
* The command payload that stops the cover.
|
|
* Set to `null` to disable the stop command.
|
|
* Default: "STOP"
|
|
*/
|
|
payload_stop?: string | null;
|
|
|
|
/**
|
|
* Number which represents closed position.
|
|
* Default: 0
|
|
*/
|
|
position_closed?: number;
|
|
|
|
/**
|
|
* Number which represents open position.
|
|
* Default: 100
|
|
*/
|
|
position_open?: number;
|
|
|
|
/**
|
|
* Defines a [template](https://www.home-assistant.io/docs/configuration/templating/#using-value-templates-with-mqtt)
|
|
* that can be used to extract the payload for the `position_topic` topic.
|
|
* Within the template the following variables are available: `entity_id`, `position_open`, `position_closed`, `tilt_min`, `tilt_max`.
|
|
* The `entity_id` can be used to reference the entity's attributes with help of the [states](https://www.home-assistant.io/docs/configuration/templating/#states) template function.
|
|
*/
|
|
position_template?: string;
|
|
|
|
/**
|
|
* The MQTT topic subscribed to receive cover position messages.
|
|
*/
|
|
position_topic?: string;
|
|
|
|
/**
|
|
* The maximum QoS level to be used when receiving and publishing messages.
|
|
* Default: 0
|
|
*/
|
|
qos?: number;
|
|
|
|
/**
|
|
* Defines if published messages should have the retain flag set.
|
|
* Default: false
|
|
*/
|
|
retain?: boolean;
|
|
|
|
/**
|
|
* Defines a [template](https://www.home-assistant.io/docs/configuration/templating/#using-command-templates-with-mqtt)
|
|
* to define the position to be sent to the `set_position_topic` topic.
|
|
* Incoming position value is available for use in the template `{% raw %}{{ position }}{% endraw %}`.
|
|
* Within the template the following variables are available: `entity_id`, `position`, the target position in percent; `position_open`; `position_closed`; `tilt_min`; `tilt_max`.
|
|
* The `entity_id` can be used to reference the entity's attributes with help of the [states](https://www.home-assistant.io/docs/configuration/templating/#states) template function.
|
|
*/
|
|
set_position_template?: string;
|
|
|
|
/**
|
|
* The MQTT topic to publish position commands to.
|
|
* If `set_position_topic` is used, `position_topic` should also be set.
|
|
* Use `set_position_template` if `position_topic` wants different values than within range `position_closed` - `position_open`.
|
|
*/
|
|
set_position_topic?: string;
|
|
|
|
/**
|
|
* The payload that represents the closed state.
|
|
* Default: "closed"
|
|
*/
|
|
state_closed?: string;
|
|
|
|
/**
|
|
* The payload that represents the closing state.
|
|
* Default: "closing"
|
|
*/
|
|
state_closing?: string;
|
|
|
|
/**
|
|
* The payload that represents the open state.
|
|
* Default: "open"
|
|
*/
|
|
state_open?: string;
|
|
|
|
/**
|
|
* The payload that represents the opening state.
|
|
* Default: "opening"
|
|
*/
|
|
state_opening?: string;
|
|
|
|
/**
|
|
* The payload that represents the stopped state (for covers that do not report `open`/`closed` state).
|
|
* Default: "stopped"
|
|
*/
|
|
state_stopped?: string;
|
|
|
|
/**
|
|
* The MQTT topic subscribed to receive cover state messages.
|
|
* State topic can only read a (`open`, `opening`, `closed`, `closing` or `stopped`) state.
|
|
* A `"None"` payload resets to an `unknown` state.
|
|
* An empty payload is ignored.
|
|
*/
|
|
state_topic?: string;
|
|
|
|
/**
|
|
* The value that will be sent on a `close_cover_tilt` command.
|
|
* Default: 0
|
|
*/
|
|
tilt_closed_value?: number;
|
|
|
|
/**
|
|
* Defines a [template](https://www.home-assistant.io/docs/configuration/templating/#using-command-templates-with-mqtt)
|
|
* that can be used to extract the payload for the `tilt_command_topic` topic.
|
|
* Within the template the following variables are available: `entity_id`, `tilt_position`, the target tilt position in percent; `position_open`; `position_closed`; `tilt_min`; `tilt_max`.
|
|
* The `entity_id` can be used to reference the entity's attributes with help of the [states](https://www.home-assistant.io/docs/configuration/templating/#states) template function.
|
|
*/
|
|
tilt_command_template?: string;
|
|
|
|
/**
|
|
* The MQTT topic to publish commands to control the cover tilt.
|
|
*/
|
|
tilt_command_topic?: string;
|
|
|
|
/**
|
|
* The maximum tilt value.
|
|
* Default: 100
|
|
*/
|
|
tilt_max?: number;
|
|
|
|
/**
|
|
* The minimum tilt value.
|
|
* Default: 0
|
|
*/
|
|
tilt_min?: number;
|
|
|
|
/**
|
|
* The value that will be sent on an `open_cover_tilt` command.
|
|
* Default: 100
|
|
*/
|
|
tilt_opened_value?: number;
|
|
|
|
/**
|
|
* Flag that determines if tilt works in optimistic mode.
|
|
* Default: `true` if `tilt_status_topic` is not defined, else `false`.
|
|
*/
|
|
tilt_optimistic?: boolean;
|
|
|
|
/**
|
|
* Defines a [template](https://www.home-assistant.io/docs/configuration/templating/#using-value-templates-with-mqtt)
|
|
* that can be used to extract the payload for the `tilt_status_topic` topic.
|
|
* Within the template the following variables are available: `entity_id`, `position_open`, `position_closed`, `tilt_min`, `tilt_max`.
|
|
* The `entity_id` can be used to reference the entity's attributes with help of the [states](https://www.home-assistant.io/docs/configuration/templating/#states) template function.
|
|
*/
|
|
tilt_status_template?: string;
|
|
|
|
/**
|
|
* The MQTT topic subscribed to receive tilt status update values.
|
|
*/
|
|
tilt_status_topic?: string;
|
|
|
|
/**
|
|
* Defines a [template](https://www.home-assistant.io/docs/configuration/templating/#using-value-templates-with-mqtt)
|
|
* that can be used to extract the payload for the `state_topic` topic.
|
|
*/
|
|
value_template?: string;
|
|
}
|