I'm trying to find a utility that will allow a custom LCD character for a 16x2 LCD to be defined, but also, the reverse, to be given the definition, and graphically display the result.formed by the following definition, and display it.
For example, here is a definition of a custom character.
I know uint8_t is the same as byte.
It seems only 5bits are being defined per row, and three are missing?
Any help appreciated.
So the only thing going on here is that the programmer is being terse? I was thinking in terms of all bits being defined, but I guess the implication is that characters on one of the 16x2 LCDs is comprised of a matrix of pixels that are (rowxcol) = 8x5 in size?
PaulRB, yes, the lightbulb went off when I figured out why only 5oo8 bits were being specified. I've programmed in so many languages over the years, that I tend to be explicit when coding a binary or hex constant. I consider it part of the documentation of a program and making a program understandable and modifyable by others.
Thanks again for the clarification! Means a lot.