New API schema (in progress)
This commit is contained in:
377
docs/api.md
377
docs/api.md
@@ -1,8 +1,74 @@
|
||||
# API
|
||||
This document provides details on custom services designed for integration with Home Assistant, including their usage, parameters, and examples.
|
||||
|
||||
**In this document:**
|
||||
- [Service Documentation](#service-documentation)
|
||||
- [Screen Components](#screen-components)
|
||||
|
||||
## Service Documentation
|
||||
### Command Service
|
||||
|
||||
**Table of contents:**
|
||||
|
||||
| Service ID | Service Name | Description |
|
||||
|------------|--------------|-------------|
|
||||
| [`button`](#button-service-button) | [Button Service](#button-service-button) | Configures properties and state of buttons on a specified button page. |
|
||||
| [`command`](#command-service-command) | [Command Service](#command-service-command) | Sends a custom command directly to the display. |
|
||||
| [`component_color`](#component-color-service-component_color) | [Component Color Service](#component-color-service-component_color) | Changes the foreground color of a specified component on the display. |
|
||||
| [`component_hide`](#component-hide-service-component_hide) | [Component Hide Service](#component-hide-service-component_hide) | Hides a specified component on the display. |
|
||||
| [`component_show`](#component-show-service-component_show) | [Component Show Service](#component-show-service-component_show) | Shows a previously hidden component on the display. |
|
||||
| [`component_text`](#component-text-service-component_text) | [Component Text Service](#component-text-service-component_text) | Updates the text of a specified component on the display. |
|
||||
| [`component_val`](#component-value-service-component_val) | [Component Value Service](#component-value-service-component_val) | Updates the value of a specified component on the display. |
|
||||
| [`entity_details_show`](#entity-details-show-service-entity_details_show) | [Entity Details Show Service](#entity-details-show-service-entity_details_show) | Displays detailed information for a specific entity. |
|
||||
| [`icon`](#icon-service-icon) | [Icon Service](#icon-service-icon) | Updates a chip or custom button's icon, color, and visibility. |
|
||||
| [`init_global`](#initialization-service-init_global) | [Initialization Service](#initialization-service-init_global) | Transfers global settings on initialization. |
|
||||
| [`init_page_home`](#initialization-service-init_page_home) | [Initialization Service](#initialization-service-init_page_home) | Transfers settings for the "Home" page on initialization. |
|
||||
| [`init_page_settings`](#initialization-service-init_page_settings) | [Initialization Service](#initialization-service-init_page_settings) | Transfers settings for the "Settings" page on initialization. |
|
||||
| [`init_relays`](#initialization-service-init_relays) | [Initialization Service](#initialization-service-init_relays) | Transfers relay's settings during initialization. |
|
||||
| [`notification_clear`](#notification-clear-service-notification_clear) | [Notification Clear Service](#notification-clear-service-notification_clear) | Clears the current notification from the screen. |
|
||||
| [`notification_show`](#notification-show-service-notification_show) | [Notification Show Service](#notification-show-service-notification_show) | Displays a notification-message on the screen. |
|
||||
| [`page_alarm`](#alarm-settings-page-service-page_alarm) | [Alarm Settings Page Service](#alarm-settings-page-service-page_alarm) | Updates the Alarm page with current state information. |
|
||||
| [`page_climate`](#climate-page-service-page_climate) | [Climate Page Service](#climate-page-service-page_climate) | Updates the Climate page with current state information. |
|
||||
| [`page_media_player`](#media-player-page-service-page_media_player) | [Media Player Page Service](#media-player-page-service-page_media_player) | Updates the Media Player page with current state information. |
|
||||
| [`qrcode`](#qr-code-service-qrcode) | [QR Code Service](#qr-code-service-qrcode) | Displays a QR code on the panel or update the QR code information for local control. |
|
||||
| [`rtttl_play`](#rtttl-play-service-rtttl_play) | [RTTTL Play Service](#rtttl-play-service-rtttl_play) | Plays melodies encoded in the RTTTL format. |
|
||||
| [`value`](#value-service-value) | [Value Service](#value-service-value) | Updates an entity to display specific values. |
|
||||
| [`wake_up`](#wake-up-service-wake_up) | [Wake Up Service](#wake-up-service-wake_up) | Activates the display from a screensaver or low-brightness state. |
|
||||
|
||||
### Button Service: `button`
|
||||
Configures the properties and state of buttons on a specified button page, allowing for dynamic updates to button appearance and behavior based on specified parameters.
|
||||
|
||||
**Usage:**
|
||||
This service is designed for dynamic user interface adjustments, enabling the customization of button states, icons, colors, and labels.
|
||||
It's particularly useful for reflecting changes in device states or user interactions within the UI.
|
||||
|
||||
**Parameters:**
|
||||
- `page` (string): The page identifier where the button is located.
|
||||
- `id` (string): The button's unique identifier.
|
||||
- `state` (bool): The state of the button, which can affect its background picture and other visual elements.
|
||||
- `icon` (string): Icon codepoint from [HASwitchPlate Material Design Icons](https://htmlpreview.github.io/?https://github.com/jobr99/Generate-HASP-Fonts/blob/master/cheatsheet.html). Example: "\uE6E8" for `mdi:lightbulb-on-outline`.
|
||||
- `icon_color` (int[]): The RGB color array for the icon.
|
||||
- `icon_font` (int): The Nextion font identifier for the icon (default is 8).
|
||||
- `bri` (string): Brightness level or other dynamic information to display on the button close to the icon.
|
||||
- `label` (string): The main text label displayed on the button.
|
||||
|
||||
**Home Assistant Example:**
|
||||
```yaml
|
||||
service: esphome.<your_panel_name>_button
|
||||
data:
|
||||
page: "buttonpage01"
|
||||
id: "button08"
|
||||
state: true
|
||||
icon: "\uE6E8" # Example for mdi:lightbulb-on-outline
|
||||
icon_color: [255, 0, 0] # Red
|
||||
icon_font: 2
|
||||
bri: "75%"
|
||||
label: "Living Room"
|
||||
```
|
||||
> [!NOTE]
|
||||
> Replace `<your_panel_name>` with the specific name of your panel configured in Home Assistant.
|
||||
> This service dynamically updates the specified button's properties to match the provided parameters.
|
||||
|
||||
### Command Service: `command`
|
||||
Sends a custom command directly to the display, enabling direct interaction and dynamic content updates.
|
||||
|
||||
**Usage:**
|
||||
@@ -23,7 +89,7 @@ data:
|
||||
>
|
||||
> Ensure the command string (`cmd`) is properly formatted according to your display's command processing capabilities.
|
||||
|
||||
### Component Color Service
|
||||
### Component Color Service: `component_color`
|
||||
Changes the foreground color of a specified component on the display, enabling dynamic color updates for user interface customization.
|
||||
|
||||
**Usage:**
|
||||
@@ -45,7 +111,7 @@ data:
|
||||
>
|
||||
> Ensure the `id` and color parameters accurately target and define the new color for the component.
|
||||
|
||||
### Component Hide Service
|
||||
### Component Hide Service: `component_hide`
|
||||
Hides a specified component on the display, allowing for dynamic interface changes.
|
||||
|
||||
**Usage:**
|
||||
@@ -70,7 +136,7 @@ data:
|
||||
>
|
||||
> If the component being hidden is not part of the current page, the command will fail and an error message will be logged.
|
||||
|
||||
### Component Show Service
|
||||
### Component Show Service: `component_show`
|
||||
Makes a specified component visible on the display again, allowing for dynamic interface reversals.
|
||||
|
||||
**Usage:**
|
||||
@@ -90,7 +156,7 @@ data:
|
||||
>
|
||||
> Ensure the `id` precisely matches the component on your display you wish to make visible again.
|
||||
|
||||
### Component Text Service
|
||||
### Component Text Service: `component_text`
|
||||
Updates the text of a specified component on the display, enabling dynamic text content updates.
|
||||
|
||||
**Usage:**
|
||||
@@ -112,7 +178,7 @@ data:
|
||||
>
|
||||
> Make sure the `id` corresponds to the correct component on your display for the text update to work as intended.
|
||||
|
||||
### Component Value Service
|
||||
### Component Value Service: `component_val`
|
||||
Updates the value of a specified component on the display, enabling dynamic value updates.
|
||||
|
||||
**Usage:**
|
||||
@@ -134,7 +200,34 @@ data:
|
||||
>
|
||||
> Ensure the `id` accurately matches the component on your display to successfully update its value.
|
||||
|
||||
### Icon Service
|
||||
### Entity Details Show Service: `entity_details_show`
|
||||
This service is designed to display detailed information about a specific entity within the panel's interface.
|
||||
It enables users to navigate to a dedicated page showing extensive details about an entity, such as a light or a climate,
|
||||
and provides a structured way to return to either the home page or a specific button page.
|
||||
|
||||
**Usage:**
|
||||
Ideal for interfaces requiring detailed entity information across various contexts.
|
||||
By specifying the `entity_id` and `back_page`, users are offered a seamless navigation experience,
|
||||
ensuring they can easily access detailed information and return to their initial navigation point within the interface.
|
||||
|
||||
**Parameters:**
|
||||
- `entity_id` (string): The unique identifier of the entity for which details are displayed.
|
||||
- `back_page` (string): The page identifier to return to after viewing entity details.
|
||||
Valid options are `home` for the home page or `buttonpage01` to `buttonpage04` for button pages.
|
||||
No other pages are supported to maintain navigation consistency.
|
||||
|
||||
**Home Assistant Example:**
|
||||
```yaml
|
||||
service: esphome.<your_panel_name>_entity_details_show
|
||||
data:
|
||||
entity_id: "light.living_room"
|
||||
back_page: "buttonpage01"
|
||||
```
|
||||
> [!NOTE]
|
||||
> Ensure to replace <your_panel_name> with the specific name of your panel configured in Home Assistant.
|
||||
> This setup provides a direct and user-friendly way to access and return from detailed entity information, enhancing the interface's usability.
|
||||
|
||||
### Icon Service: `icon`
|
||||
Updates a chip or custom button's icon, color, and visibility within Home Assistant.
|
||||
|
||||
**Usage:**
|
||||
@@ -142,7 +235,7 @@ This service is ideal for dynamically updating icons on your Panel, allowing for
|
||||
|
||||
**Parameters:**
|
||||
- `id` (string): Identifier of the chip or button component. Refer to "[Screen components](#screen-components)" for more details.
|
||||
- `icon` (string): Icon codepoint from [HASwitchPlate Material Design Icons](https://htmlpreview.github.io/?https://github.com/jobr99/Generate-HASP-Fonts/blob/master/cheatsheet.html). Example: "/uE6E8" for `mdi:lightbulb-on-outline`.
|
||||
- `icon` (string): Icon codepoint from [HASwitchPlate Material Design Icons](https://htmlpreview.github.io/?https://github.com/jobr99/Generate-HASP-Fonts/blob/master/cheatsheet.html). Example: "\uE6E8" for `mdi:lightbulb-on-outline`.
|
||||
- `icon_color` (int[]): RGB color array for the icon. Example: `[0, 255, 0]` for green.
|
||||
- `visible` (bool): Flag indicating whether the icon should be visible (`true`) or hidden (`false`).
|
||||
|
||||
@@ -151,7 +244,7 @@ This service is ideal for dynamically updating icons on your Panel, allowing for
|
||||
service: esphome.<your_panel_name>_icon
|
||||
data:
|
||||
id: "home.chip03"
|
||||
icon: "/uE6E8" # Example for mdi:lightbulb-on-outline
|
||||
icon: "\uE6E8" # Example for mdi:lightbulb-on-outline
|
||||
icon_color: [0, 255, 0] # Green
|
||||
visible: true
|
||||
```
|
||||
@@ -178,11 +271,11 @@ It configures ESPHome with settings that affect overall functionality and user i
|
||||
|
||||
**Home Assistant Example:**
|
||||
```yaml
|
||||
service: esphome.<your_panel_name>_global_settings
|
||||
service: esphome.<your_panel_name>_init_global
|
||||
data:
|
||||
blueprint_version: "4.2.5"
|
||||
embedded_climate: true
|
||||
embedded_climate_friendly_name: "Home Climate"
|
||||
embedded_climate_friendly_name: "Termostato da Sala"
|
||||
embedded_indoor_temperature: true
|
||||
mui_please_confirm: "Confirme, por favor."
|
||||
mui_unavailable: "Indisponível"
|
||||
@@ -194,6 +287,84 @@ data:
|
||||
>
|
||||
> This service should be called to update ESPHome with the latest global settings as specified in your blueprint.
|
||||
|
||||
### Initialization Service: `init_page_home`
|
||||
Configures the "Home" page settings and user interface elements in ESPHome,
|
||||
aligning with the blueprint specifications to create a personalized and functional home screen.
|
||||
|
||||
**Usage:**
|
||||
This service plays a crucial role in the initial setup and ongoing updates of the "Home" page,
|
||||
facilitating dynamic adjustments to layout, appearance, and interactive elements.
|
||||
It accommodates extensive customizations, impacting both visual appeal and functionality of UI components.
|
||||
|
||||
**Parameters:**
|
||||
- `date_color` (int[]): RGB color array for the date display.
|
||||
- `time_format` (string): Format string for displaying time, supporting standard time formatting symbols.
|
||||
- `time_color` (int[]): RGB color array for the time display.
|
||||
- `meridiem` (string[]): Array of strings for AM/PM labels, applicable if the time format includes meridiem.
|
||||
- `chip_font` (int): Font Id for icons or chips displayed on the "Home" page.
|
||||
- `custom_buttons_font` (int): Font Id for custom button icons on the "Home" page.
|
||||
- `notification_icon` (string): Icon codepoint from [HASwitchPlate Material Design Icons](https://htmlpreview.github.io/?https://github.com/jobr99/Generate-HASP-Fonts/blob/master/cheatsheet.html) for the notification button.
|
||||
- `notification_icon_color_normal` (int[]): RGB color array for the notification icon under normal conditions.
|
||||
- `notification_icon_color_unread` (int[]): RGB color array for the notification icon when there are unread notifications.
|
||||
- `qrcode` (bool): Flag indicating whether the QR code button is enabled.
|
||||
- `qrcode_icon` (string): Icon codepoint from [HASwitchPlate Material Design Icons](https://htmlpreview.github.io/?https://github.com/jobr99/Generate-HASP-Fonts/blob/master/cheatsheet.html) for the QR code button.
|
||||
- `qrcode_icon_color` (int[]): RGB color array for the QR code button icon.
|
||||
- `entities_pages` (bool): Flag indicating whether the entities page button is enabled.
|
||||
- `entities_pages_icon` (string): Icon codepoint from [HASwitchPlate Material Design Icons](https://htmlpreview.github.io/?https://github.com/jobr99/Generate-HASP-Fonts/blob/master/cheatsheet.html) for the entities page button.
|
||||
- `entities_pages_icon_color` (int[]): RGB color array for the entities page button icon.
|
||||
|
||||
**Home Assistant Example:**
|
||||
```yaml
|
||||
service: esphome.<your_panel_name>_init_page_home
|
||||
data:
|
||||
date_color: [255, 255, 255] # White
|
||||
time_format: "HH:mm"
|
||||
time_color: [255, 255, 255] # White
|
||||
meridiem: ["AM", "PM"]
|
||||
chip_font: 8
|
||||
custom_buttons_font: 9
|
||||
notification_icon: "\uE1ED" # Example for mdi:email
|
||||
notification_icon_color_normal: [255, 255, 255] # White
|
||||
notification_icon_color_unread: [255, 0, 0] # Red
|
||||
qrcode: true
|
||||
qrcode_icon: "\uE432" # Example for mdi:qrcode-scan
|
||||
qrcode_icon_color: [0, 255, 0] # Green
|
||||
entities_pages: true
|
||||
entities_pages_icon: "\uEDCF" # Example for mdi:format-list-bulleted-square
|
||||
entities_pages_icon_color: [0, 0, 255] # Blue
|
||||
```
|
||||
> [!NOTE]
|
||||
> Ensure to replace `<your_panel_name>` with the actual name of your panel configured in Home Assistant.
|
||||
> This service customizes the "Home" page with specified settings, enhancing the panel's interface based on the project's blueprint.
|
||||
|
||||
### Initialization Service: `init_page_settings`
|
||||
Populates the "Settings" page with configurable options in the panel,
|
||||
tailored according to the project's blueprint to create a user-friendly and cohesive settings interface.
|
||||
|
||||
**Usage:**
|
||||
This service is crucial for the initial configuration and subsequent updates of the "Settings" page.
|
||||
It facilitates the customization of labels and functionalities, including reboot actions and screen brightness adjustments, directly from the panel's interface.
|
||||
This customization ensures that the settings are not only accessible but also intuitive for end-users.
|
||||
|
||||
**Parameters:**
|
||||
- `reboot` (string): Text label for the reboot button, guiding users on the action to restart the device.
|
||||
- `brightness` (string): Description label for adjusting the screen's brightness.
|
||||
- `bright` (string): Label preceding the slider for selecting the high brightness level, indicating the option for a brighter screen setting.
|
||||
- `dim` (string): Label preceding the slider for selecting the dimmed brightness level, indicating the option for a lower light setting.
|
||||
|
||||
**Home Assistant Example:**
|
||||
```yaml
|
||||
service: esphome.<your_panel_name>_init_page_settings
|
||||
data:
|
||||
reboot: "Restart Device"
|
||||
brightness: "Screen Brightness"
|
||||
bright: "Bright Mode:"
|
||||
dim: "Dim Mode:"
|
||||
```
|
||||
> [!NOTE]
|
||||
> Replace `<your_panel_name>` with the specific name of your panel configured in Home Assistant.
|
||||
> This service customizes the "Settings" page according to specified labels, enhancing user interaction with device settings.
|
||||
|
||||
### Initialization Service: `init_relays`
|
||||
Configures relay settings in ESPHome according to the specifications provided in the blueprint,
|
||||
ensuring each relay operates with the correct parameters for control, appearance, and fallback behavior.
|
||||
@@ -204,12 +375,12 @@ It tailors ESPHome's relay operations for specific use cases, including local co
|
||||
|
||||
**Parameters:**
|
||||
- `relay1_local_control` (bool): Enables or disables local control for Relay 1.
|
||||
- `relay1_icon` (string): Specifies the icon for Relay 1.
|
||||
- `relay1_icon_color` (int): Sets the RGB565 color for Relay 1's icon.
|
||||
- `relay1_icon` (string): Icon codepoint from [HASwitchPlate Material Design Icons](https://htmlpreview.github.io/?https://github.com/jobr99/Generate-HASP-Fonts/blob/master/cheatsheet.html) for Relay 1.
|
||||
- `relay1_icon_color` (int): Sets the [RGB565 color number](https://rgbcolorpicker.com/565) for Relay 1's icon.
|
||||
- `relay1_fallback` (bool): Determines the fallback state for Relay 1 in case of communication loss.
|
||||
- `relay2_local_control` (bool): Enables or disables local control for Relay 2.
|
||||
- `relay2_icon` (string): Specifies the icon for Relay 2.
|
||||
- `relay2_icon_color` (int): Sets the RGB565 color for Relay 2's icon.
|
||||
- `relay2_icon` (string): Icon codepoint from [HASwitchPlate Material Design Icons](https://htmlpreview.github.io/?https://github.com/jobr99/Generate-HASP-Fonts/blob/master/cheatsheet.html) for Relay 2.
|
||||
- `relay2_icon_color` (int): Sets the [RGB565 color number](https://rgbcolorpicker.com/565) for Relay 2's icon.
|
||||
- `relay2_fallback` (bool): Determines the fallback state for Relay 2 in case of communication loss.
|
||||
|
||||
**Home Assistant Example:**
|
||||
@@ -217,19 +388,22 @@ It tailors ESPHome's relay operations for specific use cases, including local co
|
||||
service: esphome.<your_panel_name>_init_relays
|
||||
data:
|
||||
relay1_local_control: true
|
||||
relay1_icon: "lightbulb"
|
||||
relay1_icon_color: 16711680 # Red
|
||||
relay1_icon: "\uE3A5" # Example for mdi:numeric-1-box-outline
|
||||
relay1_icon_color: 63488 # Red in 16-bit color (0xF800)
|
||||
relay1_fallback: false
|
||||
relay2_local_control: true
|
||||
relay2_icon: "power"
|
||||
relay2_icon_color: 65280 # Green
|
||||
relay2_icon: "\uE3A8" # Example for mdi:numeric-2-box-outline
|
||||
relay2_icon_color: 2016 # Green in 16-bit color (0x07E0)
|
||||
relay2_fallback: true
|
||||
```
|
||||
> [!NOTE]
|
||||
> Replace `<your_panel_name>` with the specific name of your panel configured in Home Assistant.
|
||||
> This service initializes relay settings based on the provided parameters, customizing relay functionality and presentation as defined in the blueprint.
|
||||
|
||||
### Notification Clear Service
|
||||
> [!IMPORTANT]
|
||||
> Colors here are in RGB565 numeric (decimal) format. You can use a [RGB565 color picker](https://rgbcolorpicker.com/565) to convert from RGB.
|
||||
|
||||
### Notification Clear Service: `notification_clear`
|
||||
Removes any displayed notification from the screen, allowing the display to return to its normal state or view.
|
||||
|
||||
**Usage:**
|
||||
@@ -244,7 +418,7 @@ service: esphome.<your_panel_name>_notification_clear
|
||||
> Replace `<your_panel_name>` with the specific name of your panel configured in Home Assistant to ensure the service executes correctly.
|
||||
This simple action clears the current notification from the display, maintaining a tidy interface.
|
||||
|
||||
### Notification Show Service
|
||||
### Notification Show Service: `notification_show`
|
||||
Displays a notification message on the screen, enabling dynamic presentation of information or alerts.
|
||||
|
||||
**Usage:**
|
||||
@@ -269,7 +443,160 @@ data:
|
||||
>
|
||||
> Utilize `\r` within the message for custom line breaks, offering precise formatting control.
|
||||
|
||||
### RTTTL Play Service
|
||||
### Alarm Settings Page Service: `page_alarm`
|
||||
Populates the alarm settings page with the current configuration and state information,
|
||||
seamlessly integrating with the panel's interface to reflect the latest settings and statuses of the alarm system.
|
||||
|
||||
**Usage:**
|
||||
The `page_alarm` service is specifically designed to dynamically update the alarm settings page, providing users with immediate access to the alarm system's controls and information.
|
||||
It plays a crucial role in ensuring a responsive and user-friendly interface for alarm management, allowing for real-time interaction with the alarm system directly from the panel.
|
||||
|
||||
**Parameters:**
|
||||
- `page_title` (string): The title displayed at the top of the alarm settings page.
|
||||
- `state` (string): The current state of the alarm system, such as "armed_home" or "disarmed".
|
||||
- `supported_features` (int): A bitmask indicating the features supported by the alarm system. This determines the controls and options available on the alarm settings page. The bitmask values are aligned with the [Home Assistant Alarm Control Panel Supported Features](https://github.com/home-assistant/core/blob/33ff6b5b6ee3d92f4bb8deb9594d67748ea23d7c/homeassistant/components/alarm_control_panel/const.py#L32).
|
||||
- `code_format` (string): Specifies the code format required for arming/disarming the alarm system, such as numeric or alphanumeric.
|
||||
- `code_arm_required` (bool): Indicates whether a code is required to arm the system.
|
||||
- `entity` (string): The entity ID of the alarm system, used for state updates and control actions.
|
||||
- `mui_alarm` (string[]): An array of localized text strings for the alarm control buttons, supporting various alarm states and actions.
|
||||
|
||||
**Home Assistant Example:**
|
||||
```yaml
|
||||
service: esphome.<your_panel_name>_page_alarm
|
||||
data:
|
||||
page_title: "Home Security System"
|
||||
state: "disarmed"
|
||||
supported_features: 31 # Example: Supports arm/disarm, home/away modes, etc.
|
||||
code_format: "number"
|
||||
code_arm_required: true
|
||||
entity: "alarm_control_panel.home_alarm"
|
||||
mui_alarm:
|
||||
- "Zuhause"
|
||||
- "Abwesend"
|
||||
- "Nacht"
|
||||
- "Urlaub"
|
||||
- "Umgehen"
|
||||
- "Entwaffnen"
|
||||
```
|
||||
> [!NOTE]
|
||||
> Ensure to replace `<your_panel_name>` with the actual name of your panel configured in Home Assistant.
|
||||
> This service configuration allows for the alarm settings page to dynamically reflect the current features, state, and control options of your alarm system, enhancing the overall user experience.
|
||||
|
||||
### Climate Page Service: `page_climate`
|
||||
Updates the climate page with the current state information, seamlessly integrating with the panel's interface to display the latest climate settings and statuses.
|
||||
|
||||
**Usage:**
|
||||
Designed to dynamically update the climate page, this service ensures users have instant access to climate control settings and information.
|
||||
It's crucial for maintaining a responsive and informative interface for efficient climate management.
|
||||
|
||||
**Parameters:**
|
||||
- `current_temp` (float): The current temperature.
|
||||
- `supported_features` (int): Bitmask indicating the climate device's supported features.
|
||||
These features determine the available climate controls and settings on the device.
|
||||
The bitmask values correspond to features such as temperature control, mode setting, fan speed adjustment, etc., as defined in Home Assistant's climate component constants. For detailed descriptions of each feature and its corresponding bitmask value, refer to the [Home Assistant Climate Component Constants](https://github.com/home-assistant/core/blob/33ff6b5b6ee3d92f4bb8deb9594d67748ea23d7c/homeassistant/components/climate/const.py#L156C7-L156C27).
|
||||
- `target_temp` (float): The set target temperature.
|
||||
- `target_temp_high` (float): The high end of the target temperature range, for devices that support temperature ranges.
|
||||
- `target_temp_low` (float): The low end of the target temperature range.
|
||||
- `temp_step` (int): Increment step for temperature adjustment, effectively the granularity of temperature change allowed.
|
||||
- `total_steps` (int): Total number of steps for temperature adjustment, calculated as ((temp_max - temp_min) / temp_step).
|
||||
- `temp_offset` (int): Offset applied to the temperature reading for calibration.
|
||||
- `climate_icon` (string): Icon representing the current climate status, selected from [HASwitchPlate Material Design Icons](https://htmlpreview.github.io/?https://github.com/jobr99/Generate-HASP-Fonts/blob/master/cheatsheet.html).
|
||||
- `embedded_climate` (bool): Flag indicating if climate controls are embedded within the interface.
|
||||
- `entity` (string): Entity ID for the climate device.
|
||||
|
||||
**Home Assistant Example:**
|
||||
```yaml
|
||||
service: esphome.<your_panel_name>_page_climate
|
||||
data:
|
||||
current_temp: 22.5
|
||||
supported_features: 1 | 4 # Assuming '1' is for temperature control and '4' is for fan mode, as an example.
|
||||
target_temp: 24.0
|
||||
target_temp_high: 25.0
|
||||
target_temp_low: 19.0
|
||||
temp_step: 5 # Adjust in 0.5°C increments.
|
||||
total_steps: 56 # Calculated based on the device's temperature range and step.
|
||||
temp_offset: 70 # Applied as a calibration offset.
|
||||
climate_icon: "\uE392" # mdi:thermostat
|
||||
embedded_climate: true
|
||||
entity: "climate.living_room"
|
||||
```
|
||||
> [!NOTE]
|
||||
> Replace `<your_panel_name>` with the specific name of your panel configured in Home Assistant.
|
||||
> This service ensures the climate page reflects the latest in climate control settings, enhancing the user experience by providing up-to-date information.
|
||||
|
||||
### Media Player Page Service: `page_media_player`
|
||||
Updates the media player page with current configuration and state information,
|
||||
integrating seamlessly with the panel's interface to display the latest media playback status and controls.
|
||||
|
||||
**Usage:**
|
||||
The `page_media_player` service is specifically tailored to dynamically update the media player page, ensuring users have immediate access to media playback controls and information.
|
||||
This service is essential for providing a responsive and user-friendly interface for media management, allowing real-time interaction with the media player directly from the panel.
|
||||
|
||||
**Parameters:**
|
||||
- `entity` (string): The entity ID of the media player.
|
||||
- `state` (string): The current state of the media player (e.g., playing, paused, stopped).
|
||||
- `is_volume_muted` (bool): Indicates whether the volume is currently muted.
|
||||
- `friendly_name` (string): The friendly name of the media player to be displayed as the page title.
|
||||
- `volume_level` (int): The current volume level of the media player.
|
||||
- `media_title` (string): The title of the currently playing media.
|
||||
- `media_artist` (string): The artist of the currently playing media.
|
||||
- `media_duration` (float): The total duration of the currently playing media in seconds.
|
||||
- `media_position` (float): The current playback position within the media in seconds.
|
||||
- `media_position_delta` (float): The amount of time in seconds since the last update of the media position.
|
||||
- `supported_features` (int): A bitmask indicating the features supported by the media player, such as play/pause, next/previous track, volume control, etc.
|
||||
The bitmask values correspond to the [Home Assistant Media Player Supported Features](https://github.com/home-assistant/core/blob/33ff6b5b6ee3d92f4bb8deb9594d67748ea23d7c/homeassistant/components/media_player/const.py#L177).
|
||||
|
||||
**Home Assistant Example:**
|
||||
```yaml
|
||||
service: esphome.<your_panel_name>_page_media_player
|
||||
data:
|
||||
entity: "media_player.living_room"
|
||||
state: "playing"
|
||||
is_volume_muted: false
|
||||
friendly_name: "Living Room Player"
|
||||
volume_level: 40
|
||||
media_title: "Favorite Song"
|
||||
media_artist: "Famous Artist"
|
||||
media_duration: 180
|
||||
media_position: 30
|
||||
media_position_delta: 0.5
|
||||
supported_features: 84 # Example: Play, Pause, Next, Previous
|
||||
```
|
||||
> [!NOTE]
|
||||
> Replace `<your_panel_name>` with the specific name of your panel configured in Home Assistant.
|
||||
> This service ensures the media player page reflects the latest in media playback settings and status, enhancing the user experience by providing up-to-date information.
|
||||
|
||||
### QR Code Service: `qrcode`
|
||||
Displays a QR code on the display, which can be used for various purposes such as sharing a WiFi password or linking to a website.
|
||||
|
||||
**Usage:**
|
||||
This service enables the dynamic display of QR codes on a specified page of the ESPHome user interface, allowing for the convenient sharing of information.
|
||||
It's particularly useful for settings where quick, scannable access to data is beneficial.
|
||||
|
||||
**Parameters:**
|
||||
- `title` (string): The title or heading to display above the QR code, providing context or instructions.
|
||||
- `qrcode` (string): The actual data or URL to be encoded into the QR code.
|
||||
- `show` (bool): A flag that determines whether to immediately display the QR code page upon calling the service.
|
||||
|
||||
**Home Assistant Example:**
|
||||
```yaml
|
||||
service: esphome.<your_panel_name>_qrcode
|
||||
data:
|
||||
title: "Wi-Fi Access"
|
||||
qrcode: "WIFI:T:WPA;S:mynetwork;P:mypass;;"
|
||||
show: true
|
||||
```
|
||||
> [!NOTE]
|
||||
> Replace `<your_panel_name>` with the specific name of your panel configured in Home Assistant.
|
||||
> This service will generate and display the QR code based on the provided data, navigating to the QR code page if `show` is set to `true`.
|
||||
|
||||
> [!NOTE]
|
||||
> This service is typically invoked during initialization to preload QR Code information based on blueprint settings,
|
||||
> ensuring the data is accessible on the panel even without Wi-Fi connectivity.
|
||||
> To update the QR Code information without immediately displaying it, call this service with `show: false`.
|
||||
> This allows for seamless updates to the QR Code content without disrupting the current user interface.
|
||||
|
||||
### RTTTL Play Service: `rtttl_play`
|
||||
Plays melodies encoded in the RTTTL format, enabling the integration of audio feedback or alerts with simple text-based melody strings.
|
||||
|
||||
**Usage:**
|
||||
@@ -294,7 +621,7 @@ data:
|
||||
>
|
||||
> Ensure the `tone` parameter contains a valid RTTTL string to successfully play the melody.
|
||||
|
||||
### Value Service
|
||||
### Value Service: `value`
|
||||
Updates an entity to display specific values, allowing for dynamic updates of icons, names, and value colors within Home Assistant.
|
||||
|
||||
**Usage:**
|
||||
@@ -313,7 +640,7 @@ This service is intended for entities that need to display information dynamical
|
||||
service: esphome.<your_panel_name>_value
|
||||
data:
|
||||
id: "sensor.temperature"
|
||||
icon: "/uE6E8" # Example for mdi:thermometer
|
||||
icon: "\uE6E8" # Example for mdi:thermometer
|
||||
icon_color: [255, 0, 0] # Red
|
||||
name: "Temperature"
|
||||
value: "75°F"
|
||||
@@ -322,7 +649,7 @@ data:
|
||||
> [!NOTE]
|
||||
> Replace `<your_panel_name>` with your specific panel name as configured in Home Assistant to ensure correct service execution.
|
||||
|
||||
### Wake Up Service
|
||||
### Wake Up Service: `wake_up`
|
||||
Activates the display from a screensaver or low-power state, enabling dynamic interface adjustments based on user interactions or automated triggers.
|
||||
|
||||
**Usage:**
|
||||
|
||||
Reference in New Issue
Block a user