Page 2 of 2

Re: 1602 LCD Module (HCMODU0013 & HCMODU0038)

Posted: Fri Dec 18, 2015 10:18 am
by andrew
It sounds like a bad connection issue to me. I would double check that you have good connections to the module, especially the GND connection (VSS). Is the module on long wires? If so then try shortening them.

Also in the example you posted, if you're only wanting to display something that changes every second then you only need to update the display once a second. This will reduce the chances of corruption. After the lcd.print("sec"); line add:

Code: Select all

delay(1000);