[아두이노] Motor Fan 결과 및 소스코드
아두이노 DFROBOT의 비기너 킷의 project 13입니다.
1. 소스
/*
Motor Fan
*/
int buttonPin = 2; // button pin -- Digital 2
int relayPin = 3; // relay pin -- Digital 3
int relayState = HIGH;
int buttonState;
int lastButtonState = LOW;
long lastDebounceTime = 0;
long debounceDelay = 50;
void setup() {
pinMode(buttonPin, INPUT);
pinMode(relayPin, OUTPUT);
digitalWrite(relayPin, relayState);
}
void loop() {
// read the state of the switch into a local variable:
int reading = digitalRead(buttonPin);
// check to see if you just pressed the button
// (i.e. the input went from LOW to HIGH), and you've waited
// long enough since the last press to ignore any noise:
// If the switch changed, due to noise or pressing:
if (reading != lastButtonState) {
lastDebounceTime = millis();
}
if ((millis() - lastDebounceTime) > debounceDelay) {
// whatever the reading is at, it's been there for longer
// than the debounce delay, so take it as the actual current state:
// if the button state has changed:
if (reading != buttonState) {
buttonState = reading;
// only toggle the Relay if the new button state is HIGH
if (buttonState == HIGH) {
relayState = !relayState;
}
}
}
// set the relay:
digitalWrite(relayPin, relayState);
// save the reading. Next time through the loop,
// it'll be the lastButtonState:
lastButtonState = reading;
}
2. 결과 화면
3. 분석 및 커스텀 마이징
4. 기타
'IoT (구 유비쿼터스) > 아두이노' 카테고리의 다른 글
[아두이노 프로젝트] IR 리모콘으로 조작하는 미니카 만들기 /IR remote, Servo moter, Dc moter (0) | 2015.03.28 |
---|---|
[아두이노] IR Receiver 소스 및 결과 화면 (0) | 2015.03.05 |
아두이노 비기너 키트 (Beginner Kit For Arduino v3.0) 개봉기 (0) | 2015.02.24 |
ICbanQ 무상 체험단 21기 아두이노 비기너 키트 (Beginner Kit For Arduino v3.0) 당첨! (0) | 2015.02.10 |