2012年2月1日水曜日

回路の自習: タクトスイッチ

プルダウン、プルアップ。

const int button1Pin = 2; 
const int button2Pin = 12;

void setup() {
  pinMode(button1Pin, INPUT);
  pinMode(button2Pin, INPUT);
}

void loop(){
  button1State = digitalRead(button1Pin);
  button2State = digitalRead(button2Pin);
  if (button1State == HIGH) {         
  } else {
  }
}


こうか???

0 件のコメント:

コメントを投稿