Files @ 331e67fa1492
Branch filter:

Location: light9/bin/bcf_puppet_demo - annotation

drewp@bigasterisk.com
asco try to print gst error messages. untested
Ignore-this: 137d6b933ed8a2502f7281e3a0ab5754
#!/usr/bin/python
"""
tiny bcf2000 controller demo
"""
from bcf2000 import BCF2000
from twisted.internet import reactor

class PuppetSliders(BCF2000):
    def valueIn(self, name, value):
        if name == 'slider1':
            self.valueOut('slider5', value)



b = PuppetSliders()
reactor.run()