From 60e6c5d70f8f63389997f75c992f2d59f7f6f190 Mon Sep 17 00:00:00 2001 From: Martijn Pepping <111153+mpepping@users.noreply.github.com> Date: Fri, 5 May 2023 20:17:01 +0200 Subject: [PATCH] Extended stationid length --- solarman/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solarman/helpers.py b/solarman/helpers.py index d4c0b7b..543f27c 100644 --- a/solarman/helpers.py +++ b/solarman/helpers.py @@ -32,7 +32,7 @@ "secret": {"type": "string", "minLength": 32, "maxLength": 32}, "username": {"type": "string"}, "passhash": {"type": "string", "minLength": 64, "maxLength": 64}, - "stationId": {"type": "number", "minimum": 100000, "maximum": 9999999}, + "stationId": {"type": "number", "minimum": 100000, "maximum": 999999999}, "inverterId": {"type": "string", "minLength": 10}, "loggerId": {"type": "string", "minLength": 10, "maxLength": 10}, "debug": {"type": "boolean", "optional": True},