Hi ,Everyone
1. I wonder if its possible in PBP to Store Messages i.e "Charger Failure" ,"Low Fuel Level" e.t.c
I've realised that LCDOUT command are Code Intensive,and each time I use just one command it uses alot of Program Space ,so I want to store the Display Messages elsewhere may be in EEPROM or a Table or ARRAY ,Then create a Sub-Program that will use the LCDOUT Command ,but instead of writing
LCDOUT $FE,1, "Charger Failure" to Display the word Charger Failure on the Screen,I write it as below
LCDOUT $FE,1, [Suitable Modifier] B0
Assuming the Word Charge Failure was stored in a Variable B0

2.If my suggestion above is possible ,please help me with the following

a)What type of Variable should I use to Store such Statement
Should I use BYTE or LONG ?
b)What is the Snyntax for Assigning Such data to Variable
I guess it cant be B0 = Charger Failure
SO how should I go about This
c)What Modifier should preceed the variable in the LCDOUT command in order to bring out the required result ?