I have an RTC keeping track of time and printing it out to an LCD (16, 2). The complete date and time is too long to be printed to my LCD, only half of it is shown. Is there any way to split it so I can see it all?
I take it your code is a state secret but, if you print the time on one line and the date on the other, you really should be OK. This is usually done using the cursor control, of which there is probably an example included in the library.
It all fits on a 16 character line in this format: YYYY-MM-DD HH:MM
And use 0-23 for hours so you don't need am/pm
--- bill