Skip to content

Commit e9ddff6

Browse files
committed
Examples
1 parent c7e904c commit e9ddff6

File tree

4 files changed

+1
-1
lines changed

4 files changed

+1
-1
lines changed

.DS_Store

0 Bytes
Binary file not shown.

examples/.DS_Store

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/SI470X_06_NOKIA5110_RDS/SI470X_06_NOKIA5110_RDS.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ void showProgramInfo() {
331331
display.setCursor(0, 24);
332332
display.print(aux);
333333
idxProgramInfo += 4;
334-
if (idxProgramInfo > 60) idxProgramInfo = 0;
334+
if (idxProgramInfo > (60 - sizeof(aux))) idxProgramInfo = 0;
335335
display.display();
336336
delayProgramInfo = millis();
337337
}

0 commit comments

Comments
 (0)