added space to beginning of scroll text, updated to new arduino bootloader

This commit is contained in:
Zechert, Frank (EXTERN: Capgemini) 2020-12-09 04:31:05 +01:00
parent 695f738010
commit f0009a67cc
2 changed files with 4 additions and 2 deletions

View File

@ -10,7 +10,7 @@
[env:nanoatmega328]
platform = atmelavr
board = nanoatmega328
board = nanoatmega328new
framework = arduino
lib_deps =
majicdesigns/MD_MAX72XX@^3.2.3

View File

@ -559,7 +559,9 @@ void loop()
}
else
{
beginScrollText(&cmd[4]);
// scroll text should start with additional space
cmd[3] = ' ';
beginScrollText(&cmd[3]);
}
btSerial.println(F("SCR"));
}