0
我有一個特定的開關,我需要使用它只是碰巧切換。問題在於,無論何時按下按鈕,我都需要將鍵盤筆劃發送到我的計算機。我在Arduino網站上嘗試了一個基本示例的修改,但它不適用於我:如何在我的arduino上使用切換開關作爲瞬時開關?
const int buttonPin = 2; // the number of the pushbutton pin
int prior = 0;
int buttonState = 0; // variable for reading the pushbutton status
void setup()
{
pinMode(ledPin, OUTPUT);
pinMode(buttonPin, INPUT);
Keyboard.begin();
}
void loop()
{
prior = buttonState;
buttonState = digitalRead(buttonPin);
if (buttonState != prior) {
Keyboard.write(32);
}
}
你確切的問題是什麼?如果你推它很多,它有時會工作嗎?如果是這樣,你可能只需要一個下拉電阻。祝你好運! – dbalakirev