root/trunk/libffado/support/mixer/mixer_phase88.py

Revision 459, 222 bytes (checked in by ppalmers, 16 years ago)

- Add basic OSC mixer control for Phase88

Line 
1 #!/usr/bin/python
2 #
3
4 from qt import *
5 from mixer_phase88ui import *
6 import sys
7 if __name__ == "__main__":
8     app = QApplication(sys.argv)
9     f = Phase88Control()
10     f.show()
11     app.setMainWidget(f)
12     app.exec_loop()
Note: See TracBrowser for help on using the browser.