Commit e49f3cacd6174183bd1e0ae4874c9f18f4172cba

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

자동 요리 기능 변경

- 자동 요리 단계 전환 시 오븐의 요리 모드 설정하도록 추가
Showing 1 changed file with 2 additions and 0 deletions   Show diff stats
app/gui/oven_control/autocook.cpp
@@ -99,6 +99,7 @@ void AutoCook::nextStep() @@ -99,6 +99,7 @@ void AutoCook::nextStep()
99 { 99 {
100 startHumidity = oven->currentHumidity(); 100 startHumidity = oven->currentHumidity();
101 startTemp = oven->currentTemp(); 101 startTemp = oven->currentTemp();
  102 + oven->setMode(nextStep.mode);
102 oven->setHumidity(nextStep.humidity); 103 oven->setHumidity(nextStep.humidity);
103 oven->setTemp(nextStep.temp); 104 oven->setTemp(nextStep.temp);
104 oven->setFan(nextStep.fan); 105 oven->setFan(nextStep.fan);
@@ -140,6 +141,7 @@ void AutoCook::nextStep() @@ -140,6 +141,7 @@ void AutoCook::nextStep()
140 { 141 {
141 startHumidity = oven->currentHumidity(); 142 startHumidity = oven->currentHumidity();
142 startTemp = oven->currentTemp(); 143 startTemp = oven->currentTemp();
  144 + oven->setMode(nextStep.mode);
143 oven->setHumidity(nextStep.humidity); 145 oven->setHumidity(nextStep.humidity);
144 oven->setTemp(nextStep.temp); 146 oven->setTemp(nextStep.temp);
145 oven->setFan(nextStep.fan); 147 oven->setFan(nextStep.fan);