|
@@ -199,11 +199,9 @@ void AppCore::loop()
|
199
|
199
|
if (m_appCoreState.uiState.isUpdateNeeded)
|
200
|
200
|
{
|
201
|
201
|
printState();
|
202
|
|
- m_appCoreState.uiState.isUpdateNeeded = false;
|
203
|
202
|
}
|
204
|
203
|
}
|
205
|
204
|
|
206
|
|
-
|
207
|
205
|
void AppCore::setState(
|
208
|
206
|
UiStateEnum state
|
209
|
207
|
)
|
|
@@ -254,6 +252,7 @@ void AppCore::printState()
|
254
|
252
|
m_lcd.setCursor(0, 1);
|
255
|
253
|
printStateLine('C', m_appCoreState.appState.heater, m_appCoreState.uiState.state == HeaterSetting,
|
256
|
254
|
m_appCoreState.appState.heater.isActive);
|
|
255
|
+ m_appCoreState.uiState.isUpdateNeeded = false;
|
257
|
256
|
}
|
258
|
257
|
|
259
|
258
|
void
|