Пример #1
0
class JoystickUpdate(threading.Thread):
    '''
    classdocs
    '''
    
    def setDevice(self, devicePath):
        self.devicePath = devicePath

    def getJoystick(self):
        return self.joy

    def run(self):
        self.joy = Joystick()
        self.joy.init(self.devicePath)
        while(1):
            #time.sleep(1)
            print "Updating Joystick"
            self.joy.update()