Commit 285c47121387161cb997fc208261c363a935cb5e

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

기능 변경

- 메인 보드에 설정하는 중심 온도를 원하는 값보다 더 높게 설정
- 메인 보드의 중심 온도 기능을 장애 대처 용으로 전환했기 때문
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
app/gui/oven_control/ovencontroller.cpp
... ... @@ -99,8 +99,8 @@ void OvenController::setTime(int secs)
99 99  
100 100 void OvenController::setInterTemp(int celsius)
101 101 {
102   - qDebug() << "Set Core Temperature" << celsius;
103   - udp->set(TG_INNER_TEMP, celsius);
  102 + qDebug() << "Set Core Temperature" << celsius << "+5";
  103 + udp->set(TG_INNER_TEMP, celsius + 5);
104 104 }
105 105  
106 106 void OvenController::setFan(int rpm)
... ...