xair-api-python/examples/headamp/__main__.py

21 lines
452 B
Python
Raw Normal View History

# Warning this script enables the phantom power for strip 09
2025-01-03 10:19:06 +00:00
import logging
import xair_api
logging.basicConfig(level=logging.DEBUG)
def main():
2025-01-15 10:54:52 +00:00
with xair_api.connect('XR18', ip='mixer.local') as mixer:
2025-01-03 10:19:06 +00:00
mixer.headamp[8].phantom = True
for i in range(-12, -6):
mixer.headamp[8].gain = i
print(mixer.headamp[8].gain)
2025-01-15 10:54:52 +00:00
input('Press Enter to continue...')
2025-01-03 10:19:06 +00:00
2025-01-15 10:54:52 +00:00
if __name__ == '__main__':
2025-01-03 10:19:06 +00:00
main()