Files @ c0f7fc86f89b
Branch filter:

Location: light9/bin/bcf_puppet_demo

drewp@bigasterisk.com
fix up hardware sliders in KC. big mess now
Ignore-this: 28956846058bf05ad44d9eeea2796c75
#!/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()