#include
#include
LiquidCrystal_PCF8574 lcd(0x27); // set the LCD address to 0x27 for a 16 chars and 2 line display
int show = -1;
String comdata="";
void setup()
{
int error;
Serial.begin(115200);
Serial.println("LCD...");
Serial1.begin(115200,SERIAL_8N1,/*rx =*/20,/*Tx =*/21);
// wait on Serial to be available on Leonardo
while (!Serial&&!Serial1)
;
Serial.println("Dose: check for LCD");
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
lcd.setBacklight(0);
delay(400);
lcd.setBacklight(255);
lcd.home();
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Hello DFRobot");
lcd.setCursor(0, 1);
lcd.print("ESP32 C3");
lcd.noBlink();
lcd.noCursor();
delay(1000);
} // setup()
void loop()
{
while(Serial1.available()>0)
{
comdata+=char(Serial1.read());
delay(2);
}
if (comdata.length()>0)
{
Serial.println(comdata);
comdata="";
}
} // loop()
由于在室内,没有GPS信号,显示均为空。
在LCD上显示当前经纬高坐标。
【MarkDown真的赞】
全部0条评论
快来发表一下你的评论吧 !