You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`interrupt`: the number of the interrupt (`int`) +
71
-
`pin`: the pin number _(Arduino Due, Zero, MKR1000 only)_ +
72
-
`ISR`: the ISR to call when the interrupt occurs; this function must take no parameters and return nothing. This function is sometimes referred to as an interrupt service routine. +
73
-
`mode`: defines when the interrupt should be triggered. Four constants are predefined as valid values: +
70
+
`interrupt`: the number of the interrupt (`int`) +
71
+
`pin`: the pin number _(Arduino Due, Zero, MKR1000 only)_ +
72
+
`ISR`: the ISR to call when the interrupt occurs; this function must take no parameters and return nothing. This function is sometimes referred to as an interrupt service routine. +
73
+
`mode`: defines when the interrupt should be triggered. Four constants are predefined as valid values: +
74
74
75
75
* *LOW* to trigger the interrupt whenever the pin is low, +
76
76
* *CHANGE* to trigger the interrupt whenever the pin changes value +
77
77
* *RISING* to trigger when the pin goes from low to high, +
78
78
* *FALLING* for when the pin goes from high to low. +
79
-
The Due, Zero and MKR1000 boards allows also: +
79
+
80
+
The Due, Zero and MKR1000 boards allows also: +
81
+
80
82
* *HIGH* to trigger the interrupt whenever the pin is high.
81
83
82
84
[float]
@@ -126,10 +128,10 @@ Note that in the table below, the interrupt numbers refer to the number to be pa
0 commit comments