Files @ 717a971132eb
Branch filter:

Location: light9/bin/bcf_puppet_demo

Drew Perttula
float vs str values on live
Ignore-this: 9eb228a2a3b2e9cdb4fe821251703268
#!/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()