Processing, 類GPIO
中的interrupts()
用法介紹。
用法
.interrupts()
返回
void
說明
例子
import processing.io.*;
color bgcolor = 0;
void setup() {
GPIO.pinMode(4, GPIO.INPUT);
GPIO.pinMode(5, GPIO.INPUT);
GPIO.attachInterrupt(4, this, "pinEvent", GPIO.RISING);
GPIO.attachInterrupt(5, this, "pinEvent", GPIO.RISING);
}
void draw() {
background(bgcolor);
}
void pinEvent(int pin) {
GPIO.noInterrupts();
println("Received interrupt on pin" + pin);
if (bgcolor == 0) {
bgcolor = color(255);
} else {
bgcolor = color(0);
}
// re-enable interrupts
GPIO.interrupts();
}
相關用法
- Processing GPIO.pinMode()用法及代碼示例
- Processing GPIO.digitalRead()用法及代碼示例
- Processing GPIO.releasePin()用法及代碼示例
- Processing GPIO.releaseInterrupt()用法及代碼示例
- Processing GPIO.waitFor()用法及代碼示例
- Processing GPIO.attachInterrupt()用法及代碼示例
- Processing GPIO.noInterrupts()用法及代碼示例
- Processing GPIO.digitalWrite()用法及代碼示例
- Processing GPIO用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
- Processing join()用法及代碼示例
- Processing () (parentheses)用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PShader用法及代碼示例
- Processing PVector.set()用法及代碼示例
- Processing FloatDict.sortKeysReverse()用法及代碼示例
- Processing texture()用法及代碼示例
- Processing IntDict.add()用法及代碼示例
- Processing PShape.enableStyle()用法及代碼示例
- Processing FloatDict.sub()用法及代碼示例
- Processing String用法及代碼示例
- Processing PImage.pixels[]用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 GPIO.interrupts()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。