วันพุธที่ 7 มีนาคม พ.ศ. 2561

ส่งงานครั้งที่2

การจำลองการทำงาน 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);               // 
  }
}


ไม่มีความคิดเห็น:

แสดงความคิดเห็น

Mini Project

Control Lamp 220v  With LDR const int lamp = 12; const int ldrPin=A0; #include <Wire.h> #include <LiquidCrystal_I2C.h>...