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" },