Files @ 5633155c0300
Branch filter:

Location: light9/bin/bcf_puppet_demo

Drew Perttula
sequencer doesn't hang so much, and it logs when you go from error->working
Ignore-this: 865392a34c76f0efaf18cb7f3d2c0c26
#!/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()