mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2025-01-18 18:40:47 +00:00
0f18116cd1
add gainlayers, levels _get_rt now private method. public_packet now property object
11 lines
222 B
Python
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()
|