I’m using 4*20 LCDs for my current project, and hope to upload an many strings as arduino can without a computer (I need to upload at least 40lines( around 80char/each). Strangely, my code is working up to binary sketch size: 3522 bytes (of a 14336 byte maximum) but not working from 3594 bytes. (Win XP, Diecimila)
For example, this array is working (3522 bytes)
char strs[12][72] = {
“Arduino is an open-source electronics prototyping platform”,
“based on flexible, easy-to-use hardware and software.”,
“It’s intended for artists, designers, hobbyists,”,
"and anyone interested in creating interactive objects or environments. ",
…
…
"Arduino projects can be stand-alone or they can communicate "
};
However, if I add more (ex> char strs[13][72]), than my lcd doesn’t show anything although my arduino uploaded the code without problems.
Thanks! I am applying progmem now, but my lcd is showing some strange characters. The strings working ok inside serial moniter, but my lcd is still showing wrong thing. Could you tell me why?