การจำลองการทำงาน LED โดย SWITCH BUTTON
CODE
int led = 13; //กำหนดตัวเเปร led ที่ขา 13
const int buttonPin = 2; // กำหนด ตัวเเปล buttonPin ที่ขา 2
void setup() {
pinMode(led, OUTPUT); //กำหนด led เป็น output
pinMode(buttonPin, INPUT);//กำหนด
buttonPin เป็น input
}
void loop()
{
bool buttonState = digitalRead(buttonPin); //กำหนดให้ ตัวเเปร buttonState
คือค่าที่อ่านได้จาก
buttonPin
while (buttonState == HIGH) // ถ้า buttonState ==HIGH
{
digitalWrite(led, HIGH); // ส่งข้อมูล high ไปที่ led
delay(1000); // หน่วงเวลา 1 วินาที
digitalWrite(led, LOW); // ส่งข้อมูล low ไปที่ led
delay(1000); //
}
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น