So I've been reading and searching on how to get my menu into PROGMEM but it just doesn't seem to work. I've done a lot of readings and copy what others have posted but it doesnt work. It compiles and uploads just fine but does not show up on the LCD like before when it has not changed.
Am I missing something?
// Setup Progmem for Menu
char MENUTEXT_Backlight[] PROGMEM = "Backlight";
//Menu variables
MenuBackend menu = MenuBackend(menuUsed,menuChanged);
//initialize menuitems
MenuItem BackLight = MenuItem(MENUTEXT_Backlight); //changed this to test it out but it does not work
MenuItem BackLight10 = MenuItem("10%");
MenuItem BackLight20 = MenuItem("20%");
MenuItem BackLight30 = MenuItem("30%");
MenuItem BackLight40 = MenuItem("40%");
MenuItem BackLight50 = MenuItem("50%");
MenuItem BackLight60 = MenuItem("60%");
MenuItem BackLight70 = MenuItem("70%");
MenuItem BackLight80 = MenuItem("80%");
MenuItem BackLight90 = MenuItem("90%");
MenuItem BackLight100 = MenuItem("100%");