Home
last modified time | relevance | path

Searched refs:IRQ_RISING (Results 1 – 13 of 13) sorted by relevance

/dports/lang/micropython/micropython-1.17/tests/wipy/
H A Dpin_irq.py43 _trigger = Pin.IRQ_RISING
114 trigger=Pin.IRQ_RISING, wake=machine.SLEEP
/dports/devel/thonny/thonny-3.3.14/thonny/plugins/micropython/api_stubs/
H A Dpyb.py64 IRQ_RISING = 269549568 variable in ExtInt
198 IRQ_RISING = 269549568 variable in Pin
H A Dmachine.py73 IRQ_RISING = 269549568 variable in Pin
H A Dumachine.py73 IRQ_RISING = 269549568 variable in Pin
/dports/lang/micropython/micropython-1.17/docs/library/
H A Dpyb.ExtInt.rst37 Valid modes are pyb.ExtInt.IRQ_RISING, pyb.ExtInt.IRQ_FALLING,
60 - ``ExtInt.IRQ_RISING`` - trigger on a rising edge;
108 .. data:: ExtInt.IRQ_RISING
H A Dmachine.Pin.rst163 .. method:: Pin.irq(handler=None, trigger=(Pin.IRQ_FALLING | Pin.IRQ_RISING), *, priority=1, wake=N…
182 - ``Pin.IRQ_RISING`` interrupt on rising edge.
267 Pin.IRQ_RISING
/dports/lang/micropython/micropython-1.17/tests/pyb/
H A Dextint.py4 ext = pyb.ExtInt("X5", pyb.ExtInt.IRQ_RISING, pyb.Pin.PULL_DOWN, lambda l: print("line:", l))
/dports/devel/thonny/thonny-3.3.14/thonny/plugins/esp/esp32_api_stubs/
H A Dmachine.py102 IRQ_RISING = 1 variable in Pin
/dports/lang/micropython/micropython-1.17/docs/esp8266/tutorial/
H A Dpins.rst66 >>> p2.irq(trigger=Pin.IRQ_RISING | Pin.IRQ_FALLING, handler=callback)
/dports/devel/eric6/eric6-21.11/eric/eric6/APIs/MicroPython/
H A Dmicropython.api170 machine.Pin.IRQ_RISING?7
180 machine.Pin.irq?4(handler=None, trigger=(IRQ_FALLING | IRQ_RISING), *, priority=1, wake=None, hard=…
432 pyb.ExtInt.IRQ_RISING?7
/dports/devel/eric6/eric6-21.11/eric/eric6/APIs/Python3/
H A Dmicropython.api173 machine.Pin.IRQ_RISING?7
183 machine.Pin.irq?4(handler=None, trigger=(IRQ_FALLING | IRQ_RISING), *, priority=1, wake=None, hard=…
435 pyb.ExtInt.IRQ_RISING?7
/dports/lang/micropython/micropython-1.17/docs/pyboard/
H A Dquickref.rst119 ext = ExtInt(Pin('Y1'), ExtInt.IRQ_RISING, Pin.PULL_NONE, callback)
/dports/lang/micropython/micropython-1.17/docs/wipy/
H A Dgeneral.rst201 pin_int.irq(trigger=Pin.IRQ_RISING, handler=pincb)