Skip to content

Commit

Permalink
fixed loop iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
dyldonahue committed Feb 8, 2024
1 parent ee44bcf commit 795061a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion segment_testing/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ void SelectTherm(uint8_t therm) {
}

void updateAllTherms(uint8_t numChips, int out[][32]) {
for (int therm = 1; therm < 16; therm++) {
for (int therm = 0; therm < 15; therm++) {
SelectTherm(therm);
delay(5);
//SelectTherm(therm + 16); not needed, setting GPIO exapnder will read both
Expand Down

0 comments on commit 795061a

Please sign in to comment.