show statistics on second screen

This commit is contained in:
2020-11-20 12:20:30 +01:00
parent 3807e2fa9f
commit 206e371d48
8 changed files with 72 additions and 54 deletions

View File

@ -11,7 +11,7 @@ void loopEnable() {
HAL_GPIO_WritePin(Loop_Enable_GPIO_Port, Loop_Enable_Pin, GPIO_PIN_SET);
HAL_GPIO_WritePin(Loop_Enable_GPIO_Port, Loop_Enable_Pin, GPIO_PIN_RESET);
coloredMsg(LOG_HIGH, true, "lc le loop is enabled");
oledPrint("loop enabled");
oledPrint(OLED_SCREEN0, "loop enabled");
}
void loopDisable() {
@ -19,7 +19,7 @@ void loopDisable() {
HAL_GPIO_WritePin(Loop_Disable_GPIO_Port, Loop_Disable_Pin, GPIO_PIN_RESET);
loopActive = false;
coloredMsg(LOG_HIGH, true, "lc ld loop is disabled");
oledPrint("loop disabled");
oledPrint(OLED_SCREEN0, "loop disabled");
}
void loopStatusCallback() {