minor ver bump

added mute property to bus,fx,lr,rtn,strip
This commit is contained in:
onyx-and-iris
2022-11-08 22:10:36 +00:00
parent 2255da4e53
commit e7d38bb9d7
6 changed files with 49 additions and 1 deletions

View File

@@ -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