Skip to content

Commit

Permalink
Remove Speaker A/B from BASIC initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdwetering committed Aug 26, 2024
1 parent 08fcac1 commit add7871
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ynca/subunits/zone.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,9 @@ class Main(ZoneBase):

# ZoneA/B only exists as "subzones" on the main subunit

speakera = EnumFunctionMixin[SpeakerA](SpeakerA, init="BASIC")
speakerb = EnumFunctionMixin[SpeakerB](SpeakerB, init="BASIC")
# Speaker A/B are in BASIC on RX-V583, but are not on RX-V573 it seems
speakera = EnumFunctionMixin[SpeakerA](SpeakerA) #, init="BASIC")
speakerb = EnumFunctionMixin[SpeakerB](SpeakerB) #, init="BASIC")

pwrb = EnumFunctionMixin[PwrB](PwrB, init="BASIC")

Expand Down

0 comments on commit add7871

Please sign in to comment.