Maker Pro
Maker Pro

Keypad header file for atmega

If we want to read data in the lcd to use with the our code how should we change the R/W pin.?In this case is it connected to a MCU pin Or to thr GND .?
 
It is common for the R/W pin to be tied to GND when not in use (to save MCU pins), which means you can only write data to the LCD.

If you wish to read and write data to the LCD, you can connect the R/W to a MCU pin... Now you can set LOW to write data, HIGH to read data.
 
Top