For editing of the variables, I personally would rather whip through the screens with one click each till I get to the one I need, then whip through the rest to get out. It makes going in to edit one variable a lot faster, without fear of screwing up the rest. So in the EditParm section near the end of the code, I changed the following in mine.
From this:
Quote:
byte p=9; //right end of 10 digit number
|
To this:
And I removed this section:
Quote:
for(int x=9 ; x>=0 ;x--){ //do a nice thing and put the cursor at the first non zero number
if(fmtv[x] != '0')
p=x;
}
|
Just my preference. I tried it and it does work so if anyone wants to use it, feel free.