From efcf3ae9c340fe3ac6bb016bd087183060abbe7a Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Mon, 9 Dec 2024 15:38:21 +0100 Subject: [PATCH] Increase max ignore time to 300 * custom_components/daikin_onecta/config_flow.py: --- custom_components/daikin_onecta/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/daikin_onecta/config_flow.py b/custom_components/daikin_onecta/config_flow.py index a7ed189..0700608 100644 --- a/custom_components/daikin_onecta/config_flow.py +++ b/custom_components/daikin_onecta/config_flow.py @@ -60,7 +60,7 @@ async def async_step_init(self, user_input: dict[str, str] | None = None) -> Flo "scan_ignore", default=self.options.get("scan_ignore", 30), ): NumberSelector( - NumberSelectorConfig(min=20, max=100, step=1), + NumberSelectorConfig(min=20, max=300, step=1), ), } ),