mirror of
https://github.com/onyx-and-iris/xair-api-python.git
synced 2024-11-16 01:50:58 +00:00
20 lines
403 B
Python
20 lines
403 B
Python
import logging
|
|
|
|
import xair_api
|
|
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
|
|
|
|
def main():
|
|
with xair_api.connect("XR18", ip="mixer.local") as mixer:
|
|
for send in mixer.strip[0].send:
|
|
send.level = -22.8
|
|
|
|
mixer.strip[15].send[0].level = -16.3
|
|
mixer.auxreturn.send[0].level = -15.3
|
|
mixer.fxreturn[0].send[0].level = -14.3
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|