From 1df3fad225cf4a5fe4a749d1fa19348c9e1e4119 Mon Sep 17 00:00:00 2001 From: Brandon Harvey Date: Tue, 24 Feb 2026 17:45:52 -0600 Subject: [PATCH 1/3] [wifi_info] Add IP address text sensor Exposes the device's current IP address as a diagnostic text sensor in Home Assistant, making it easier to identify devices on the network. --- Integrations/ESPHome/Core.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Integrations/ESPHome/Core.yaml b/Integrations/ESPHome/Core.yaml index 11df89f..ecfdf8f 100644 --- a/Integrations/ESPHome/Core.yaml +++ b/Integrations/ESPHome/Core.yaml @@ -649,6 +649,10 @@ text_sensor: - platform: ld2410 version: name: "Radar Firmware Version" + - platform: wifi_info + ip_address: + name: "IP Address" + id: wifi_ip select: - platform: ld2410 From e537054c7e064780a9972791c13d66bed306354a Mon Sep 17 00:00:00 2001 From: Brandon Harvey <8107750+bharvey88@users.noreply.github.com> Date: Wed, 25 Feb 2026 14:51:09 -0600 Subject: [PATCH 2/3] fix: remove unused id, add entity_category diagnostic to IP address sensor --- Integrations/ESPHome/Core.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Integrations/ESPHome/Core.yaml b/Integrations/ESPHome/Core.yaml index ecfdf8f..cd95204 100644 --- a/Integrations/ESPHome/Core.yaml +++ b/Integrations/ESPHome/Core.yaml @@ -652,7 +652,7 @@ text_sensor: - platform: wifi_info ip_address: name: "IP Address" - id: wifi_ip + entity_category: "diagnostic" select: - platform: ld2410 From 3de778f0da7fa683155f0313d6fb201cdd85c6ee Mon Sep 17 00:00:00 2001 From: Brandon Harvey <8107750+bharvey88@users.noreply.github.com> Date: Wed, 25 Feb 2026 15:04:42 -0600 Subject: [PATCH 3/3] fix: restore id: wifi_ip (needed for ESPHome automations) --- Integrations/ESPHome/Core.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/Integrations/ESPHome/Core.yaml b/Integrations/ESPHome/Core.yaml index cd95204..9efd45a 100644 --- a/Integrations/ESPHome/Core.yaml +++ b/Integrations/ESPHome/Core.yaml @@ -652,6 +652,7 @@ text_sensor: - platform: wifi_info ip_address: name: "IP Address" + id: wifi_ip entity_category: "diagnostic" select: