Arduino กับการใช้งานจอ LCD (Liquid Crystal Display) แบบ I2C
ในบทความนี้จะเป็นบทความการใช้งานบอร์ด Arduino กับจอ Liquid Crystal ขนาด 16x2 แบบ I2C ลักษณะการใช้งานคล้ายๆ บทความ Arduino กับการใช้งานจอ LCD (Liquid Crystal Display) คือ ให้บอร์ด Arduino ส่งข้อมูลต่างๆ เช่น ข้อความ หรือ ค่าเอาต์พุตจากเซ็นเซอร์ เพื่อเเสดงผลยังหน้าจอ LCD เเต่จะมีชุดควบคุม(PCF8574) สำหรับควบคุมการทำงานของจออีกทีหนึ่ง จึงทำให้ลดจำนวนขาการใช้งาน เหลือเพียง 4 เส้น
ในบทความนี้จะเป็นบทความการใช้งานบอร์ด Arduino กับจอ Liquid Crystal ขนาด 16x2 แบบ I2C ลักษณะการใช้งานคล้ายๆ บทความ Arduino กับการใช้งานจอ LCD (Liquid Crystal Display) คือ ให้บอร์ด Arduino ส่งข้อมูลต่างๆ เช่น ข้อความ หรือ ค่าเอาต์พุตจากเซ็นเซอร์ เพื่อเเสดงผลยังหน้าจอ LCD เเต่จะมีชุดควบคุม(PCF8574) สำหรับควบคุมการทำงานของจออีกทีหนึ่ง จึงทำให้ลดจำนวนขาการใช้งาน เหลือเพียง 4 เส้น
รายละเอียดต่างๆ ของชุดควบคุมจอจะมีดังนี้
- ขาสัญญาณสำหรับต่อเข้ากับบอร์ด Arduino
- ตัวต้านทานแบบปรับค่าได้สำหรับปรับ Contrast ของตัวอักษร
- ตัวเลือก Address ของจอ
- จั๊มเปอร์เเบล็คไลท์
ติดตั้งไลบรารี่
- ไปที่ Library Manager ค้นหา "LiquidCrystal i2c" เเล้วติดตั้ง (ดูการติดตั้งไลบรารี่เพิ่มเติม)
ค้นหา I2C Adress ของชุดควบคุมจอ
- เพื่อตรวจสอบการเชื่อมต่อ เเละ ค้นหา Address ของชุดควบคุมจอ (ดูการแสกน I2C Adress เพิ่มเติม)
- หลังจากได้ Address เเล้ว นำ Address ที่ได้ไปใส่ในตัวอย่างโปรเเกรม (*บางรุ่นอาจเป็น 0x27 หรือ 0x3F)
ตัวอย่างโปรเเกรมที่ใช้
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Wire.h> | |
#include <LiquidCrystal_I2C.h> | |
//LiquidCrystal_I2C lcd(0x27,16,2); // set the LCD address to 0x27 for a 16 chars and 2 line display | |
LiquidCrystal_I2C lcd(0x3f,16,2); // set the LCD address to 0x27 for a 16 chars and 2 line display | |
//LiquidCrystal_I2C lcd(0x27,20,4); // set the LCD address to 0x27 for a 20 chars and 4 line display | |
void setup() | |
{ | |
lcd.init(); // initialize the lcd | |
// Print a message to the LCD. | |
lcd.backlight(); | |
lcd.setCursor(3,0); | |
lcd.print("Hello, world!"); | |
lcd.setCursor(4,1); | |
lcd.print(" Arduino!"); | |
delay(2000); | |
} | |
void loop() | |
{ | |
lcd.clear(); | |
lcd.print("Hello "); | |
lcd.print(millis()/1000); | |
delay(1000); | |
} |
ผลลัพธ์ของโปรเเกรม
* ถ้าตัวหนังสือไม่ชัด ให้ปรับ Contrast โดยปรับที่ตัวต้านทานปรับค่าได้
Referent
- https://github.com/marcoschwartz/LiquidCrystal_I2C
Comments
Post a Comment