mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2024-11-15 17:10:46 +00:00
83429e17ad
add more tests to higher. added opts to tests. removed delay, max_polls from runmany, not required for these tests.
21 lines
578 B
Python
21 lines
578 B
Python
import vban_cmd
|
|
|
|
def main():
|
|
with vban_cmd.connect('potato', ip=ip, port=port, streamname=streamname, bps=bps, channel=channel) as vban:
|
|
for param in ['A1', 'A2', 'A3', 'A4', 'A5', 'B1', 'B2', 'B3', 'mono', 'mute']:
|
|
setattr(vban.strip[0], param, True)
|
|
print(getattr(vban.strip[0], param))
|
|
setattr(vban.strip[0], param, False)
|
|
print(getattr(vban.strip[0], param))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
kind_id = 'potato'
|
|
ip = 'ws.local'
|
|
port=6980
|
|
streamname = 'testing'
|
|
bps = 57600
|
|
channel=3
|
|
|
|
main()
|