mirror of
https://github.com/onyx-and-iris/xair-api-python.git
synced 2026-04-18 13:33:31 +00:00
minor ver bump
added mute property to bus,fx,lr,rtn,strip
This commit is contained in:
@@ -61,3 +61,11 @@ class LR(ILR):
|
||||
@property
|
||||
def address(self) -> str:
|
||||
return f"/lr"
|
||||
|
||||
@property
|
||||
def mute(self) -> bool:
|
||||
return not self.mix.on
|
||||
|
||||
@mute.setter
|
||||
def mute(self, val: bool):
|
||||
self.mix.on = not val
|
||||
|
||||
Reference in New Issue
Block a user