I bought a new smart lcd wnich works by rs 232 protocol
But i cannot send commands to it
Iam using Arduino uno plus max232 tranciever
I want to send such command:
AA 40 00 00 02 00 00 00 02 09 FC 33 Cc 3c c3
How to write the code for this to work
Please help.
example:
Serial.write(0x45); // send a byte with the value Hex 45
Serial.write(0xAA); // send a byte with the value Hex AA
Thanks for response
I already wrote it like this:
Void loop{
Serial.write (0xAA);
Serial.write (0x40);
Serial.write (0x00);
Serial.write (0x02);
...
...
...
...
Serial.write(0xc3);
}
But no responce from lcd