From 8ceb89479a93591f7333fac571d17acd2b12923e Mon Sep 17 00:00:00 2001 From: Robotron80 <76777715+Robotron80@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:18:16 +0100 Subject: [PATCH] Add support for Lexicon RV/MC series --- src/arcam/fmj/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arcam/fmj/__init__.py b/src/arcam/fmj/__init__.py index 85560c5..887e2fb 100644 --- a/src/arcam/fmj/__init__.py +++ b/src/arcam/fmj/__init__.py @@ -108,7 +108,7 @@ class NullPacket(ArcamException): APIVERSION_450_SERIES = {"AVR380", "AVR450", "AVR750"} -APIVERSION_860_SERIES = {"AV860", "AVR850", "AVR550", "AVR390", "SR250"} +APIVERSION_860_SERIES = {"AV860", "AVR850", "AVR550", "AVR390", "SR250", "RV-6", "RV-9", "MC-10"} APIVERSION_SA_SERIES = {"SA10", "SA20", "SA30", "SA750"} APIVERSION_HDA_SERIES = { "AVR5", @@ -149,7 +149,7 @@ class NullPacket(ArcamException): APIVERSION_ST_SERIES = {"ST60"} APIVERSION_DAB_SERIES = {"AVR450", "AVR750"} -APIVERSION_DAB_SERIES.update("AV860", "AVR850", "AVR550", "AVR390") +APIVERSION_DAB_SERIES.update("AV860", "AVR850", "AVR550", "AVR390", "RV-6", "RV-9", "MC-10") APIVERSION_DAB_SERIES.update(APIVERSION_HDA_SERIES) APIVERSION_ZONE2_SERIES = set()