Reference+
Name
releaseInterrupt()
Class
GPIO
Description
Stops listening for interrupts on an input pin
Examples
import processing.io.*; color bgcolor = 0; void setup() { GPIO.pinMode(4, GPIO.INPUT); GPIO.attachInterrupt(4, this, "pinEvent", GPIO.RISING); } void draw() { background(bgcolor); } void pinEvent(int pin) { println("Received interrupt"); bgcolor = color(255); // disable further interrupts from occuring on this pin GPIO.releaseInterrupt(pin); }
Syntax
.releaseInterrupt(pin)
Parameters
pin
(int)
GPIO pin
Return
void
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.