From 6af290eb746174b13668d7b04f7d046a0861f36d Mon Sep 17 00:00:00 2001 From: starkillerOG Date: Mon, 23 Jun 2025 20:53:09 +0200 Subject: [PATCH] Add Reolink Telephoto main stream (#146975) --- homeassistant/components/reolink/camera.py | 7 +++++++ homeassistant/components/reolink/strings.json | 3 +++ 2 files changed, 10 insertions(+) diff --git a/homeassistant/components/reolink/camera.py b/homeassistant/components/reolink/camera.py index b9744f8e002..44386434cad 100644 --- a/homeassistant/components/reolink/camera.py +++ b/homeassistant/components/reolink/camera.py @@ -73,6 +73,13 @@ CAMERA_ENTITIES = ( translation_key="telephoto_sub", supported=lambda api, ch: api.supported(ch, "autotrack_stream"), ), + ReolinkCameraEntityDescription( + key="autotrack_main", + stream="telephoto_main", + translation_key="telephoto_main", + supported=lambda api, ch: api.supported(ch, "autotrack_stream"), + entity_registry_enabled_default=False, + ), ReolinkCameraEntityDescription( key="autotrack_snapshots_sub", stream="autotrack_snapshots_sub", diff --git a/homeassistant/components/reolink/strings.json b/homeassistant/components/reolink/strings.json index 7a77c523b16..5473887a8ff 100644 --- a/homeassistant/components/reolink/strings.json +++ b/homeassistant/components/reolink/strings.json @@ -507,6 +507,9 @@ "telephoto_sub": { "name": "Telephoto fluent" }, + "telephoto_main": { + "name": "Telephoto clear" + }, "telephoto_snapshots_sub": { "name": "Telephoto snapshots fluent" },