Files @ 3d1112a894df
Branch filter:

Location: light9/bin/bcf_puppet_demo

Drew Perttula
drag subs from KC into CC to make a new subterm (if needed) and curve and some points that turn the sub on right now. some bugs about adding a subterm more than once
Ignore-this: 2c90a5d00c667ea38f23b0e6b36061dc
#!/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()