메이커 이야기/아두이노
2020. 2. 7.
[아두이노 터치센서] 터치센서 LED on/off
터치 센서로 LED 켜기 ○ 사용 부품 1) 아두이노 UNO 2) LED 3) 330ohm 저항 4) 터치센서 ○ 적용 회로 ○ 적용 코드 #define TOUCH 8 #define LED 3 void setup() { // put your setup code here, to run once: Serial.begin(9600); pinMode(TOUCH, INPUT); pinMode(LED, OUTPUT); } int buff; void loop() { // put your main code here, to run repeatedly: int touchVal = digitalRead(TOUCH); if( ! touchVal ){ digitalWrite(LED,LOW); buff = 0; return; }..