2017-04-18 02:21:47 -04:00
|
|
|
# test the micropython.kbd_intr() function
|
|
|
|
|
|
|
|
import micropython
|
|
|
|
|
|
|
|
try:
|
|
|
|
micropython.kbd_intr
|
|
|
|
except AttributeError:
|
2021-03-15 09:57:36 -04:00
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2017-04-18 02:21:47 -04:00
|
|
|
|
|
|
|
# just check we can actually call it
|
|
|
|
micropython.kbd_intr(3)
|