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


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


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

用法

  • .pinMode(pin, mode)

參數

  • pin (int) 通用輸入輸出引腳
  • mode (int) GPIO.INPUT、GPIO.INPUT_PULLUP、GPIO.INPUT_PULLDOWN 或 GPIO.OUTPUT

返回

  • void

說明

將引腳配置為用作輸入 (INPUT),或使用內部 pull-up 電阻器 (INPUT_PULLUP) 輸入,或使用內部 pull-down 電阻器 (INPUT_PULLDOWN) 或輸出 (OUTPUT) 輸入



與 Arduino 不同,默認情況下引腳被隱式設置為輸入,有必要為您想要訪問的任何引腳調用此函數,包括輸入引腳。



Pull-up 和 pull-down 電阻器在連接按鈕和開關時非常有用,因為它們會在未進行電氣連接時強製引腳的值處於指定的電氣狀態,否則引腳將保留 "floating"。



設置(和清除)pull-up 和 pull-down 電阻器的能力目前僅限於運行 Raspbian 發行版的 Raspberry Pi。在其他係統上,將顯示警告。

例子

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.pinMode()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。