ارسل رسائل باستخدام Arduino LCD


طريقة استخدام وحده الاردينو فى كتابة رسالة و اظهر على شاشة  LCD

 

المكونات

  1. Arduino uno
  2. LCD
طريقة التوصيل 

 يتم التوصيل كما هو موضوح فى الرسم 



الكود المستخدم 

#include 
#include 
#include   // F Malpartida’s NewLiquidCrystal library
#define I2C_ADDR    0x20  // Define I2C Address for controller
#define BACKLIGHT_PIN  7
#define En_pin  4
#define Rw_pin  5
#define Rs_pin  6
#define D4_pin  0
#define D5_pin  1
#define D6_pin  2
#define D7_pin  3
#define  LED_OFF  0
#define  LED_ON  1
LiquidCrystal_I2C  lcd(I2C_ADDR,En_pin,Rw_pin,Rs_pin,D4_pin,D5_pin,D6_pin,D7_pin);
void setup()
{
lcd.begin (16,2);  // initialize the lcd
// Switch on the backlight
lcd.setBacklightPin(BACKLIGHT_PIN,NEGATIVE);
lcd.setBacklight(LED_ON);
}
void loop()
{
// Reset the display
lcd.clear();
delay(1000);
lcd.home();
// Print on the LCD
lcd.backlight();
lcd.setCursor(0,0);
lcd.print(“Hello, world!”);  // you can write your massage here
delay(8000);
}