Files @ 3b3cc5f98a03
Branch filter:

Location: light9/bin/bcf_puppet_demo

drewp@bigasterisk.com
vidref use async http client for talking to asco and CC. No more blocking the gst thread to learn curvecalc time
Ignore-this: d6564b13cb68581b3416fd4efaaf261b
#!/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()