Add files via upload

This commit is contained in:
ConnerMcLaughlin 2016-09-11 18:21:28 -05:00 committed by GitHub
parent afad30ff34
commit c6e42b2971
1 changed files with 4 additions and 4 deletions

View File

@ -685,7 +685,7 @@ void sendPage(bool useChar)
{
if (useChar)
{
do
do //This is a do while loop that kicks in for the boostvvtPage
{
const char spaceChar = ' ';
/*while(pageTitles[currentTitleIndex])
@ -740,13 +740,13 @@ void sendPage(bool useChar)
Serial.write(spaceChar);
}
Serial.println();
if(currentTitleIndex == 121)
if(currentTitleIndex == 121) //Check to see if on boostTable
{
currentTitleIndex = 132;
currentTitleIndex = 132; //Change over to vvtTable mid display
currentTable = vvtTable;
}
else currentTitleIndex = 0;
}while(currentTitleIndex == 132);
}while(currentTitleIndex == 132); //Should never loop unless going to display vvtTable
}
else
{