def __init__(self, name, ttsProxy, memProxy, ledProxy, sensors):
     threading.Thread.__init__(self)
     self.name = name
     self.running = True
     self.bc = buttonC.buttonController(ttsProxy, memProxy, sensors)
     self.gc = gameC.gameController(self.team)
     self.ledProxy = ledProxy
     self.firstCallPenalty = True
示例#2
0
def main():
       
    box = boxController()
    button = buttonController(box)
示例#3
0
 def __init__(self, name, ttsProxy, memProxy):
     threading.Thread.__init__(self)
     self.name = name
     self.running = True
     self.bc = buttonC.buttonController(ttsProxy, memProxy)
     self.gc = gameC.gameController(self.team)
 def __init__(self, name, ttsProxy, memProxy ):
     threading.Thread.__init__(self)
     self.name = name
     self.running = True
     self.bc = buttonC.buttonController( ttsProxy, memProxy )
     self.gc = gameC.gameController( self.team )