diff --git a/app/gui/oven_control/washwindow.cpp b/app/gui/oven_control/washwindow.cpp index ba9fb70..8419066 100644 --- a/app/gui/oven_control/washwindow.cpp +++ b/app/gui/oven_control/washwindow.cpp @@ -73,6 +73,8 @@ WashWindow::WashWindow(QWidget *parent) : ui->animation->load(":/images/animation/wash_02.png"); ui->animation->load(":/images/animation/wash_03.png"); ui->animation->load(":/images/animation/wash_04.png"); + ui->animation->show(); + ui->animation->start(300); ui->washStepGauge->setValue(0); ui->titleLabel->setText(tr("제품 스팀통을 세척 중입니다")); ui->descLabel->setText(tr("완료될 때까지 문을 열지 마세요\n제품의 스팀통 자동 세척 기능을 실행 중입니다")); @@ -85,6 +87,7 @@ WashWindow::WashWindow(QWidget *parent) : WashWindow::~WashWindow() { + udp->turnOff(TG_CLEANING); delete ui; } @@ -337,6 +340,8 @@ void WashWindow::onChanged() } else { + state = Idle; + SoundPlayer::playStop(); OvenStatistics::getInstance()->setWashState(false); ui->titleLabel->setText(tr("세척이 종료되었습니다"));