Thursday, February 7, 2019

LCD+LDR


#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
int aVal=0,tempaVal=0;
void setup()
{

  lcd.begin(16,2);
}
void loop()
{
 aVal = analogRead(A0);

if (tempaVal != aVal)
{
  lcd.clear();
  lcd.setCursor(0,0);
  lcd.print("LDR");
  lcd.setCursor(0,1);
  lcd.print(aVal);
  delay(300);
}
tempaVal = aVal;
}
ทดลอง
พอเอา ภาษา C ไปใส่ Arduino จะแสดงค่าความต้านทาน LDR ตามที่เราปรับ

No comments:

Post a Comment

MINI Project ตัวจับเวลา

#include <LiquidCrystal.h> LiquidCrystal lcd(7,6,5,4,3,2); const int set = 8; int hours=10; int start=11;  int relay=9; ...