mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2026-01-02 01:27:47 +00:00
add levels to strip and bus class. strip level values defined as: pre fader input peak level in dB * 100 bus level values defined as: bus output peak level in dB * 100
11 lines
220 B
Python
11 lines
220 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(8):
|
|
print(vban.bus[i].levels.all)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|