Programming/아두이노2 아두이노 : LED, 점점 밝게 하기 const int buttonPin = 2; const int ledPin = 3; void setup() { // put your setup code here, to run once: pinMode(buttonPin, INPUT); } void loop() { // put your main code here, to run repeatedly: int buttonInput = digitalRead(buttonPin); if(buttonInput = HIGH){ for(int t_high = 0; t_high 2020. 7. 1. 아두이노 : 버튼 제어, LED 불켜기 const int LED = 3; const int button = 2; int state = 0; void setup() { // put your setup code here, to run once: pinMode(LED, OUTPUT); pinMode(button, INPUT); } void loop() { // put your main code here, to run repeatedly: int Input = digitalRead(button); if(Input == HIGH) //입력이 1일 때 { if(state == 0) //상태 0 일때 1로 변환 { state = 1; } else if(state == 1) //상태 1일 때 0으로 변환 { state = 0; } } if(state == .. 2020. 7. 1. 이전 1 다음 반응형