Ejemplo n.º 1
0
 def isPressed(self):
     return pz.readInput(self.channel) == 0
Ejemplo n.º 2
0
 def waitForRelease(self):
     while pz.readInput(self.channel) == 0:
         pass
Ejemplo n.º 3
0
 def read(self):
     return pz.readInput(self.channel)
Ejemplo n.º 4
0
 def waitForPress(self):
     while pz.readInput(self.channel) == 1:
         pass