vban-cmd-python/__main__.py
onyx-and-iris 0f18116cd1 add gainlayers, levels, public_packet property object
add gainlayers, levels

_get_rt now private method.

public_packet now property object
2022-02-26 23:57:19 +00:00

11 lines
222 B
Python

import vban_cmd
from time import sleep
def main():
with vban_cmd.connect('potato', ip='ws.local') as vban:
for i in range(100):
print(vban.bus[3].levels.all)
if __name__ == '__main__':
main()