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


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


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

用法

  • .releasePin(pin)

參數

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

返回

  • void

說明

將 pin 的所有權歸還給操作係統



如果不調用此函數,即使在草圖關閉後,引腳仍將保持當前狀態。

例子

import processing.io.*;
boolean ledOn = false;

void setup() {
  GPIO.pinMode(4, GPIO.OUTPUT);

  // On the Raspberry Pi, GPIO 4 is pin 7 on the pin header,
  // located on the fourth row, above one of the ground pins

  frameRate(0.5);
}

void draw() {
  ledOn = !ledOn;
  if (ledOn) {
    GPIO.digitalWrite(4, GPIO.LOW);
  } else {
    GPIO.digitalWrite(4, GPIO.HIGH);
  }
}

// cleanup on keypress
void keyPressed() {
  GPIO.releasePin(4);
  exit();
}

相關用法


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