view bin/bcf_puppet_demo @ 1043:aa45e5379c5a

effecteval improvements. displays current song+effect tree Ignore-this: 94a007b1206c45483d74878fb35248d
author Drew Perttula <drewp@bigasterisk.com>
date Wed, 28 May 2014 05:57:08 +0000
parents e0a1e2031de5
children 7772cc48e016
line wrap: on
line source

#!/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()