This works perfect, but is it possible for me to change some of the names in this array?
Say i would like to do this sudo-code:
String text = "SensorValue =";
Int Number = 12;
Menu[2] = text + Number;
Essentially substituting "Terminate Sep" from the above code with "SensorValue =12".
I have tried googling and read a lot of posts, but none seem to work or be able to do the above mentioned thing. Hope that you can help. Thanks in advance
It is not a good idea to use the String (capital S) class on an Arduino as it can cause memory corruption in the small memory on an Arduino. This can happen after the program has been running perfectly for some time. Just use cstrings - char arrays terminated with '\0' (NULL).
You can copy data into your array using the strcpy() function - but be very careful not to exceed the original size of the array.