Files @ 7d59926031ba
Branch filter:

Location: light9/bin/subserver

drewp@bigasterisk.com
attempted fixes to dmx_usb kernel module for 2.6.38. untested; may crash you
Ignore-this: 7d3167e0c028a60f152114a8addcb18
# keep the database of submasters, and mix up the current client
# requests into dmx levels for dmxserver

class SubServe:
    """call the server with these messages"""
    
    def allSubs(self):
        """list of all the known subs"""

    def output(self,levels):
        """pass a dict of {sub : level} mappings"""

def editsub


class SubClient:
    """each client can receive these messages"""
    
    def subAdded(self,newsub):
        """sub was just added to the db"""

    def subRemove(self,pastsub):
        """this sub is about to be removed from the db"""

    def subChange(self,sub):
        """this is a new version of an existing sub"""