Commit ee1a8b1afae4bb2765ffd72cdc3a73a536b6675e

Authored by 김태훈
1 parent 8a51dcc5cc
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
... ... @@ -38,7 +38,7 @@ void OvenController::onDataChanged()
38 38  
39 39 int OvenController::currentTemp()
40 40 {
41   - return state.curr_heat;
  41 + return state.sensor1;
42 42 }
43 43  
44 44  
... ...