blob: 47d84c8b5e46ba0e5b348f4c35831dd103472877 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import pyb
ext = pyb.ExtInt('X1', pyb.ExtInt.IRQ_RISING, pyb.Pin.PULL_DOWN, lambda l:print('line:', l))
ext.disable()
ext.enable()
print(ext.line())
ext.swint()
ext.disable()
|