void clcdPrint(u8 cx, u8 cy, char *formatString[, arg0, …, argn])
| cx: x-position (column) of first character to be printed |
| cy: y-position (row) of first character to be printed |
| formatString: A character string to be printed that can optionally contain format specifiers |
| arg0,…,argn: An optional set of arguments to be used by format specifiers. |
Prints a character string, formatStrng, on the CLCD device at location cx, cy. formatString can contain format specifiers just like the printf function. See the printf function for more details.