Example #1
0
 def __init__(self, events):
     Event.__init__(self, io)
     self.pins = events
Example #2
0
 def __init__(self, channel):
     Event.__init__(self, motor)
     self.channel = channel
Example #3
0
 def __init__(self, agentIndex, prevId=None):
     Event.__init__(self, prevId)
     self.index = agentIndex
Example #4
0
 def __init__(self, events):
     Event.__init__(self, power_switch)
     self.switches = events
 def __init__(self, agentIndex, prevId=None):
     Event.__init__(self, prevId)
     self.index = agentIndex
Example #6
0
 def __init__(self):
     Event.__init__(self, vispoll)
     self.blobs = []
Example #7
0
 def __init__(self, events):
     Event.__init__(self, diopoll)
     self.events = events
Example #8
0
 def __init__(self, pvals):
     "pvals is a dict of relevant pins and values"
     Event.__init__(self, io)
     self.pvals = pvals
Example #9
0
 def __init__(self, event, data=None):
     Event.__init__(self, APP_EVENT_CLASS, event, data)
Example #10
0
 def __init__(self):
     Event.__init__(self)
     self.blobs = []
Example #11
0
 def __init__(self):
     Event.__init__(self, vision)
     self.blobs = []
Example #12
0
 def __init__(self, event, data=None):
     Event.__init__(self, CONTROL_EVENT_CLASS, event, data)
Example #13
0
 def __init__(self, event, data=None):
     Event.__init__(self, PLAYER_EVENT_CLASS, event, data)