Skip to content

Commit f5676a3

Browse files
nelsonovtekka007
authored andcommitted
Allow splash screen to redirect to MY_DEBUGDEVICE if defined (#1057) (#1210)
* Allow splash screen to redirect to MY_DEBUGDEVICE if defined (#1057)
1 parent 8e8f44b commit f5676a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/MySplashScreen.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ void displaySplashScreen(void)
4444
}
4545
const uint8_t rep = val > 7 ? val - 5 : 1;
4646
for (uint8_t c = 0; c<rep; c++) {
47-
MY_SERIALDEVICE.print(display);
47+
MY_DEBUGDEVICE.print(display);
4848
}
4949
}
50-
MY_SERIALDEVICE.println(F(MYSENSORS_LIBRARY_VERSION "\n"));
50+
MY_DEBUGDEVICE.println(F(MYSENSORS_LIBRARY_VERSION "\n"));
5151
#endif
5252
}

0 commit comments

Comments
 (0)