I connected the LK204-Rx pin to Arduino Mega Tx1 (Serial1) and get 5V power from Arduino as well.
When power up the module, I can see the default startup screen.
But when I run the below tiny program, the result totally awkward.
void setup() {
Serial.begin(9600);
Serial1.begin(19200);
Serial1.flush();
}
void loop() {
if (Serial.available()) {
Serial1.print(Serial.read(), BYTE);
Serial.flush();
}
}
If I enter "a" from Arduino serial monitor, the LK204 LCD will display "0" on it.
Can someone help me out?
