ชื่อชิ้นงาน ไม้กันรถ ปิดเปิดอัตโนมัติ
โค้ด
#include <Servo.h>
#include <LiquidCrystal_PCF8574.h>
LiquidCrystal_PCF8574 lcd(0x27);
int NUM ;
void setup()
{
lcd.begin(16,2);
lcd.setBacklight(100);
Serial.begin(9600);
pinMode(13,INPUT);
myservo.attach(7);
}
void loop()
{
int x = digitalRead(13);
if (x==0)
{
NUM++;
}
lcd.setCursor(4,0);
lcd.print("Welcome");
lcd.setCursor(0,1);
lcd.print("Number Cars = ");
lcd.print(NUM);
if (x==0)
{
myservo.write(80);
delay(3000);
myservo.write(160);
}
Serial.print(x);
delay(1000);
}
ลิงค์วีดีโอ
https://www.youtube.com/watch?v=atz-GLI3XoM
ไม่มีความคิดเห็น:
แสดงความคิดเห็น