We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff743e0 commit 638234cCopy full SHA for 638234c
content/micropython/01.basics/08.reference/reference.md
@@ -73,6 +73,7 @@ For example:
73
- [randomSeed()](#randomseed)
74
- [External Interrupts](#external-interrupts)
75
- [attachInterrupt()](#attachinterrupt)
76
+- [Attaches an interrupt to a pin with specified mode.](#attaches-an-interrupt-to-a-pin-with-specified-mode)
77
- [detachInterrupt()](#detachinterrupt)
78
- [digitalPinToInterrupt()](#digitalpintointerrupt)
79
- [Interrupts](#interrupts)
@@ -850,6 +851,7 @@ print(random_number)
850
851
`interrupt_pin.irq(trigger=mode, handler=function)`
852
853
Attaches an interrupt to a pin with specified mode.
854
+-
855
856
```python
857
from machine import Pin
0 commit comments