File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ def red_led(self, value):
273
273
def keys (self ):
274
274
"""
275
275
The keys on the MacroPad. Uses events to track key number and state, e.g. pressed or
276
- released. You must fetch the events using ``keys.event .get()`` and then the events are
276
+ released. You must fetch the events using ``keys.events .get()`` and then the events are
277
277
available for usage in your code. Each event has three properties:
278
278
279
279
* ``key_number``: the number of the key that changed. Keys are numbered starting at 0.
@@ -292,7 +292,7 @@ def keys(self):
292
292
macropad = MacroPad()
293
293
294
294
while True:
295
- event = macropad.keys.event .get()
295
+ event = macropad.keys.events .get()
296
296
if event:
297
297
print(event)
298
298
"""
You can’t perform that action at this time.
0 commit comments