Files @ 102a456be7db
Branch filter:

Location: light9/bin/bcf_puppet_demo

drewp@bigasterisk.com
refactor EE moving towards the ability to re-bump existing curves
Ignore-this: 3a488225654c1cc8695b5466b2cdbc1c
#!/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()