We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi! I'm having some problems declearing an array. I am trying to make an array that contains messages that I will later display on an LCD display. I am using a 2D char array, but I don't want to specify a fixed size to the second dimension. At the moment i am doing this:
const char message[][20] = { "RS232 Monitor", "By: Oyvind Tjervaag", "V1.0", };
const char message[][] = {...}
Ahh... Yes, just tried it and that seems to be exactly what I need.. Thanks Jon, Øyvind