Skip to content

Commit

Permalink
Add support for JBL SA750 (Arcam SA30 clone) (#32)
Browse files Browse the repository at this point in the history
Add support for detecting the JBL `SA750`.
  • Loading branch information
restitux authored Nov 20, 2024
1 parent d784a5e commit f7b15c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/arcam/fmj/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class NullPacket(ArcamException):

APIVERSION_450_SERIES = {"AVR380", "AVR450", "AVR750"}
APIVERSION_860_SERIES = {"AV860", "AVR850", "AVR550", "AVR390", "SR250"}
APIVERSION_SA_SERIES = {"SA10", "SA20", "SA30"}
APIVERSION_SA_SERIES = {"SA10", "SA20", "SA30", "SA750"}
APIVERSION_HDA_SERIES = {
"AVR5",
"AVR10",
Expand Down Expand Up @@ -181,13 +181,13 @@ class NullPacket(ArcamException):
APIVERSION_AMP_DIAGNOSTICS_SERIES.update(APIVERSION_SA_SERIES)
APIVERSION_AMP_DIAGNOSTICS_SERIES.update(APIVERSION_PA_SERIES)

APIVERSION_CLASS_G_SERIES = {"PA720", "PA240", "SA20", "SA30"}
APIVERSION_CLASS_G_SERIES = {"PA720", "PA240", "SA20", "SA30", "SA750"}

APIVERSION_PHONO_SERIES = {"SA30"}
APIVERSION_PHONO_SERIES = {"SA30", "SA750"}

APIVERSION_SIMPLE_IP_SERIES = {"PA720", "PA240", "SA10", "SA20"}

APIVERSION_APP_SAFETY_SERIES = {"SA30"}
APIVERSION_APP_SAFETY_SERIES = {"SA30", "SA750"}


class ApiModel(enum.Enum):
Expand Down

0 comments on commit f7b15c6

Please sign in to comment.