Skip to content

Commit

Permalink
Update x1_boost.py: relax the requirements on the type field to suppo…
Browse files Browse the repository at this point in the history
…rt v3
  • Loading branch information
rnauber authored Jun 10, 2024
1 parent 61d04d2 commit 6693cc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions solax/inverters/x1_boost.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@

class X1Boost(Inverter):
"""
X1-Boost with Pocket WiFi 2.034.06
X1-Boost with Pocket WiFi 2.034.06 or 3.009.03
Includes X-Forwarded-For for direct LAN API access
"""

# pylint: disable=duplicate-code
_schema = vol.Schema(
{
vol.Required("type", "type"): vol.All(int, 4),
vol.Required("type", "type"): int,
vol.Required(
"sn",
): str,
Expand Down

0 comments on commit 6693cc2

Please sign in to comment.