You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# return a list like [0, 1, 14, 15] in multiple mode
42
+
# return a list like [0, 2, 11, 15] in multiple mode
43
43
```
44
44
45
45
<b>input</b> parameter:
@@ -58,11 +58,11 @@ In multiple mode keypad.read() will return a list containing all the indexes of
58
58
59
59
If the TTP229-BSF is configured to multiple mode, read it in single mode will return the lowest index of all pressed keys. Read in multiple mode for a keypad configured in single mode, you'll get a list containing only one key index if any key is pressed.
60
60
61
-
There's also a <b>raw</b> parameter, default False. When set as True, keypad.read() will return the raw 8 or 16 key list indicating all keys' status (1=not pressed, 0=pressed).
61
+
There's also a <b>raw</b> parameter, default False. When set as True, keypad.read() will return the raw 8 or 16 key list indicating all keys' status (from key 0 to 15; value 1 = not pressed, 0 = pressed).
0 commit comments