Example #1
0
 def setPowerOff(self):
     abstract()
Example #2
0
 def reverse(self):
     abstract()
Example #3
0
 def setPowerOn(self):
     abstract()
Example #4
0
 def spinStop(self):
     abstract()
Example #5
0
 def forward(self):
     abstract()
Example #6
0
 def isPowerOff(self):
     abstract()
Example #7
0
 def setState(self,state):
     abstract()
Example #8
0
 def tiltUp(self):
     abstract()
Example #9
0
 def tiltDown(self):
     abstract()
Example #10
0
 def speedUp(self):
     abstract()
Example #11
0
 def slowDown(self):
     abstract()
Example #12
0
 def turnRight(self):
     abstract()
Example #13
0
 def turnLeft(self):
     abstract()
Example #14
0
 def stop(self):
     abstract()
Example #15
0
 def getPower(self):
     abstract()
Example #16
0
 def spinLeft(self):
     abstract()
Example #17
0
 def isPowerOn(self):
     abstract()
Example #18
0
 def spinRight(self):
     abstract()
Example #19
0
 def updateDevice(self):
     """Must be implemented by derived class.  Called on selection
     of new device telling GUI to refresh based on device state"""
     abstract()
Example #20
0
 def getState(self):
     abstract()