From dfd31d52104f728eca807296d17276ab758625a5 Mon Sep 17 00:00:00 2001 From: Nazar Mokrynskyi Date: Sun, 23 Jun 2024 07:05:00 +0300 Subject: [PATCH] Fix X1 Hybrid Gen4 support with new firmware --- solax/inverters/x1_hybrid_gen4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solax/inverters/x1_hybrid_gen4.py b/solax/inverters/x1_hybrid_gen4.py index ed74a9a..c020d0f 100644 --- a/solax/inverters/x1_hybrid_gen4.py +++ b/solax/inverters/x1_hybrid_gen4.py @@ -19,7 +19,7 @@ class X1HybridGen4(Inverter): vol.Required("data"): vol.Schema( vol.All( [vol.Coerce(float)], - vol.Length(min=200, max=200), + vol.Length(min=200, max=300), ) ), vol.Required("information"): vol.Schema(vol.All(vol.Length(min=9, max=10))),