Hello everyone: I'm experimenting with adding lower case letters in the .cpp file. Everything seems to work until I get past the letter 't.' (ASCII 116) After that, instead of the desired letter (u-z), I get a bunch of garbage. I plugged the values I got into the Alpha 5 char generator in the wiki and this is what was produced:
Desired letter: 'u', 4,1,4
What I got: 4,0,0 (half an underscore)
"v", 0,2,4 (I got 0,0,0. a Space.)
"w", 12,1,6 (I got 3,0,0. A Negative symbol.)
"x", same as Capital "X." (0,2,208). (I got 9,3,3. Garbage.)
"y", 20,1,40 (I got 255,3,1. Garbage with both decimal points.)
"z", 20,2,0 (I got 42,1,3. Looks like a backwards 6.)
The last 3 characters ("{","|",and "}") work fine as special characters.
If I put these into the .ino file as an a5editFontChar() in the DisplayWordSequence, only then the actual letters come up, however an extra segment lights up on (sp) ASCII 32.
I changed the upper limit in the a5editFontChar section of the cpp file to 126 (or '~') to accommodate the extra characters. I also commented out the a5LoadNextFadeStage() in both files to save RAM.
Any suggestions? Thanks! ~Chuck
Comments
Thanks Windell! I now have 3 out of 5 things accomplished. All that's left is the Temperature Sensor (Where would be a good place to put it on the PC board? And where in the code (and which file) do I it put it in?) and more clock options.