當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Processing GPIO.digitalRead()用法及代碼示例


Processing, 類GPIO中的digitalRead()用法介紹。

用法

  • .digitalRead(pin)

參數

  • pin (int) 通用輸入輸出引腳

返回

  • int

說明

返回輸入引腳的值,即 GPIO.HIGH (1) 或 GPIO.LOW (0)



在調用此函數之前,您需要通過調用 pinMode() 將引腳設置為輸入。

例子

import processing.io.*;

// On the Raspberry Pi GPIO 4 is physical pin 7 on the header

void setup() {
  // INPUT_PULLUP enables the built-in pull-up resistor for this pin
  // left alone, the pin will read as HIGH
  // connected to ground (via e.g. a button or switch) it will read LOW
  GPIO.pinMode(4, GPIO.INPUT_PULLUP);
}

void draw() {
  if (GPIO.digitalRead(4) == GPIO.LOW) {
    // button is pressed
    fill(255);
  } else {
    // button is not pressed
    fill(204);
  }
  stroke(255);
  ellipse(width/2, height/2, width*0.75, height*0.75);
}

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 GPIO.digitalRead()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。