Commit eeffffb47f45bfb05bee28a18b93498a43cdc2fa

Authored by 김태훈
1 parent 2eb083d4b6
Exists in master and in 2 other branches fhd, fhd-demo

중심 온도 측정 기준 변경

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/gui/oven_control/ovencontroller.cpp
... ... @@ -49,7 +49,7 @@ int OvenController::currentHumidity()
49 49  
50 50 int OvenController::currentInterTemp()
51 51 {
52   - return state.sensor6;
  52 + return qMin(qMin(state.sensor6, state.sensor7), qMin(state.sensor8, state.sensor9));
53 53 }
54 54  
55 55 bool OvenController::door()
... ...