RowStop(row)
photodude opened this issue · 0 comments
photodude commented
Describe the solution you'd like
Create a function which stops one of the 5 rows of the 5x5 array
Additional context
prototype psudocode
``cpp
void RowStop(row)
{
row = constrain(row, 1, 5);
switch (row)
{
case 1:
// motors A to E Left side
break;
case 2:
// motors F to J
break;
case 3:
// motors K to O
break;
case 4:
// motors P to T
break;
case 5:
// motors U to Y
break;
}
}