Skip to content

Commit 8e8ccf7

Browse files
committed
Fix warning
1 parent 725d0cf commit 8e8ccf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/Basic/IRQCounter/IRQCounter.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ void loop()
4646
{
4747
// Check for received IRQ every second.
4848
Serial.println("--------");
49-
for (auto i = irqChannel1; i <= irqChannel6; i++) {
49+
for (unsigned int i = irqChannel1; i <= irqChannel6; i++) {
5050
Serial.print("IRQ Channel: ");
5151
Serial.print(i + 1);
5252
Serial.print(" - ");

0 commit comments

Comments
 (0)