Ejemplo n.º 1
0
 def startSerialThread(self):
     self.flushSerial()
     self.currentthread = Stepper(self.update, 50)
     self.currentthread.start()
Ejemplo n.º 2
0
 def startmoving(self):
     self.stopmoving()
     self.currentthread = Stepper(self.onestep, SIMULATOR_PERIOD)
     self.currentthread.start()