Thanks Scott, I will give that a shot!
toggle quoted message
Show quoted text
On Thu, Nov 30, 2023 at 12:23 PM, Scott Nielson wrote:
PUSH ChInc
{
INTEGER ch;
ch = GetLastModifiedArrayIndex();
// IncrementCh(ch,3);? //commented out because the ChincRepeat loop will always fire--resulting in doing this twice
ChIncRepeat[ch] = 1;
WHILE ( ChIncRepeat[ch] )
{
IncrementCh(ch,3); //I changed the order here and corrected the down command
ProcessLogic();
Delay(IncrementInterval);
}
?