コード例 #1
0
 def isPressed(self):
     return pz.readInput(self.channel) == 0
コード例 #2
0
 def waitForRelease(self):
     while pz.readInput(self.channel) == 0:
         pass
コード例 #3
0
 def read(self):
     return pz.readInput(self.channel)
コード例 #4
0
 def waitForPress(self):
     while pz.readInput(self.channel) == 1:
         pass