Files @ 11b74e7d6b88
Branch filter:

Location: light9/bin/bcf_puppet_demo

Drew Perttula
draw adjusters for all curve pts, not just 4
Ignore-this: 28b553a4935b4900496499d74489d8ee
#!/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()