現在Arduino的涵式庫中對於LCD的支援越來越多了,對於PCF8574的支援也更方便,
因為PCF8574對I2C的支援讓1602A的使用很方便,所以不建議再使用傳統多位元的使用方式,
打開Arduino IDE的管理程式庫:
搜尋PCF8574,有很多個程式庫可選,我使使用下面這一個,LiquidCrystal_PCF8574:
安裝好之後可以打開這個程式庫所附的範例程式:
整個程式如下:
#include <LiquidCrystal_PCF8574.h>
#include <Wire.h>
LiquidCrystal_PCF8574 lcd(0x27); // set the LCD address to 0x27 for a 16 chars and 2 line display
int show = -1;
void setup()
{
int error;
Serial.begin(9600);
Serial.println("LCD...");
// wait on Serial to be available on Leonardo
while (!Serial)
;
Serial.println("Dose: check for LCD");
// See http://playground.arduino.cc/Main/I2cScanner how to test for a I2C device.
Wire.begin();
Wire.beginTransmission(0x27);
error = Wire.endTransmission();
Serial.print("Error: ");
Serial.print(error);
if (error == 0) {
Serial.println(": LCD found.");
show = 0;
lcd.begin(16, 2); // initialize the lcd
} else {
Serial.println(": LCD not found.");
} // if
} // setup()
void loop()
{
if (show == 0) {
lcd.setBacklight(255);
lcd.home();
lcd.clear();
lcd.print("Hello LCD");
delay(1000);
lcd.setBacklight(0);
delay(400);
lcd.setBacklight(255);
} else if (show == 1) {
lcd.clear();
lcd.print("Cursor On");
lcd.cursor();
} else if (show == 2) {
lcd.clear();
lcd.print("Cursor Blink");
lcd.blink();
} else if (show == 3) {
lcd.clear();
lcd.print("Cursor OFF");
lcd.noBlink();
lcd.noCursor();
} else if (show == 4) {
lcd.clear();
lcd.print("Display Off");
lcd.noDisplay();
} else if (show == 5) {
lcd.clear();
lcd.print("Display On");
lcd.display();
} else if (show == 7) {
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("*** first line.");
lcd.setCursor(0, 1);
lcd.print("*** second line.");
} else if (show == 8) {
lcd.scrollDisplayLeft();
} else if (show == 9) {
lcd.scrollDisplayLeft();
} else if (show == 10) {
lcd.scrollDisplayLeft();
} else if (show == 11) {
lcd.scrollDisplayRight();
} else if (show == 12) {
lcd.clear();
lcd.print("write-");
} else if (show > 12) {
lcd.print(show - 13);
} // if
delay(1400);
show = (show + 1) % 16;
} // loop()
首先先includeLiquidCrystal_PCF8574.h程式庫進來,後面只要指定I2C位址027即可,
這是預設位址,如果你修改過或是買到的是8574AT,那位址就要跟著改成正確的,
編譯後上傳,就會看到LCD上展示各種顯示文字與功能,比起之前用的程式庫來說方便很多,
這個範例程式基本上只要把線接好接正確,都可以很順利值行並看到效果,推薦使用。
正確執行的話,打開com port介面會看到:
留言列表