Skip to content

Commit b1afed2

Browse files
Added buttons() method -- polls all buttons, returns bitmask
1 parent 853a344 commit b1afed2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Adafruit_CharLCDPlate/Adafruit_CharLCDPlate.py

+6
Original file line numberDiff line numberDiff line change
@@ -424,10 +424,16 @@ def backlight(self, color):
424424
self.i2c.address, self.MCP23017_GPIOB, self.portb)
425425

426426

427+
# Read state of single button
427428
def buttonPressed(self, b):
428429
return (self.i2c.readU8(self.MCP23017_GPIOA) >> b) & 1
429430

430431

432+
# Read and return bitmask of combined button state
433+
def buttons(self):
434+
return self.i2c.readU8(self.MCP23017_GPIOA) & 0b11111
435+
436+
431437
# ----------------------------------------------------------------------
432438
# Test code
433439

0 commit comments

Comments
 (0)