Skip to content

Commit

Permalink
Merge pull request #602 from canton7/feature/h3-pro
Browse files Browse the repository at this point in the history
Initial stab at H3 Pro support
  • Loading branch information
canton7 authored Apr 27, 2024
2 parents 1b0828a + ccadd30 commit da1e355
Show file tree
Hide file tree
Showing 7 changed files with 2,980 additions and 730 deletions.
6 changes: 5 additions & 1 deletion custom_components/foxess_modbus/common/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ class InverterModel(StrEnum):
STAR_H3 = "STAR-H3"
SOLAVITA_SP = "SOLAVITA-SP"

H3_PRO = "H3_PRO"


class Inv(Flag):
"""
Expand All @@ -73,7 +75,9 @@ class Inv(Flag):
KUARA_H3 = auto()
H3_SET = H3 | AIO_H3 | KUARA_H3

ALL = H1_LAN | H1_G1 | H1_G2 | KH_SET | H3_SET
H3_PRO = auto()

ALL = H1_LAN | H1_G1 | H1_G2 | KH_SET | H3_SET | H3_PRO


class RegisterPollType(IntEnum):
Expand Down
Loading

0 comments on commit da1e355

Please sign in to comment.