view bin/attic/bcf_puppet_demo @ 2452:f21b61884b0f

asco: move the important buttons so they're above the fold
author drewp@bigasterisk.com
date Sun, 18 May 2025 14:37:06 -0700
parents 4556eebe5d73
children
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()