From a56b5205499b5834b54b5e2f54cc68615f314d01 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Fri, 24 Nov 2023 22:19:00 +1300 Subject: [PATCH] Update ESPHome entity ID description (#28755) --- source/_integrations/esphome.markdown | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/source/_integrations/esphome.markdown b/source/_integrations/esphome.markdown index dc0734346ea..84f5e1a1b26 100644 --- a/source/_integrations/esphome.markdown +++ b/source/_integrations/esphome.markdown @@ -57,8 +57,7 @@ ESPHome uses different naming and entity ID rules based on the configuration of ### Friendly naming - Entity name is a combination of the friendly name and component name -- Device name is prepended to the entity ID -- Entity ID uses the ESPHome ID +- Entity ID is derived from the entity name with the device name prepended Example: @@ -69,7 +68,6 @@ esphome: sensor: name: "Temperature" - id: "temperature" ``` The entity will be named `Living room desk Temperature` and will default to having an entity ID of `sensor.livingroomdesk_temperature`. @@ -88,7 +86,6 @@ esphome: sensor: name: "Temperature" - id: "temperature" ``` The entity will be named `Temperature` and will default to having an entity_id of `sensor.temperature`.