From 717898fc92fdab0127973e5e1b3eaa546a4c0839 Mon Sep 17 00:00:00 2001 From: krazos Date: Mon, 17 Apr 2023 09:10:06 +0000 Subject: [PATCH] Change entity category of IR light setting from control to config (#91382) --- homeassistant/components/reolink/light.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/reolink/light.py b/homeassistant/components/reolink/light.py index c4923c0088b..69ba42056c5 100644 --- a/homeassistant/components/reolink/light.py +++ b/homeassistant/components/reolink/light.py @@ -57,6 +57,7 @@ LIGHT_ENTITIES = ( key="ir_lights", name="Infra red lights in night mode", icon="mdi:led-off", + entity_category=EntityCategory.CONFIG, supported_fn=lambda api, ch: api.supported(ch, "ir_lights"), is_on_fn=lambda api, ch: api.ir_enabled(ch), turn_on_off_fn=lambda api, ch, value: api.set_ir_lights(ch, value),