Door Events: Update log outputs

This commit is contained in:
Siegfried Siegert 2023-06-14 14:37:34 +02:00
parent d5d2b8917a
commit 017543dd5b
Signed by: SiegfriedSiegert
GPG Key ID: 68371E015E8F0B03

View File

@ -82,7 +82,7 @@ void ATBDeviceControllerPlugin::onChangedProgramModeToSERVICE()
void ATBDeviceControllerPlugin::onChangedProgramModeToIDLE() void ATBDeviceControllerPlugin::onChangedProgramModeToIDLE()
{ {
hw->dc_autoRequest(false); hw->dc_autoRequest(false); // <-- TODO: ???
} }
void ATBDeviceControllerPlugin::onChangedProgramModeToOOO() void ATBDeviceControllerPlugin::onChangedProgramModeToOOO()
@ -147,19 +147,19 @@ void ATBDeviceControllerPlugin::onVaultDoorOpened()
// TODO: // TODO:
// - show special screen / message on screen // - show special screen / message on screen
// - create an HealthEvent (-> ISMAS-Event) // - create an HealthEvent (-> ISMAS-Event)
qCritical() << "TODO: implement ATBDeviceControllerPlugin::onVaultDoorOpened()"; qCritical() << "ATBDeviceControllerPlugin::onVaultDoorOpened()";
} }
void ATBDeviceControllerPlugin::onCoinBoxRemoved() void ATBDeviceControllerPlugin::onCoinBoxRemoved()
{ {
// TODO: // TODO:
// - create and send account (-> requestAccountResponse()) // - create and send account (-> requestAccountResponse())
qCritical() << "TODO: implement ATBDeviceControllerPlugin::onCoinBoxRemoved()"; qCritical() << "ATBDeviceControllerPlugin::onCoinBoxRemoved()";
} }
void ATBDeviceControllerPlugin::onCoinBoxInserted() void ATBDeviceControllerPlugin::onCoinBoxInserted()
{ {
qCritical() << "TODO: implement ATBDeviceControllerPlugin::onCoinBoxInserted()"; qCritical() << "ATBDeviceControllerPlugin::onCoinBoxInserted()";
} }
void ATBDeviceControllerPlugin::onAllDoorsClosed() void ATBDeviceControllerPlugin::onAllDoorsClosed()
@ -167,7 +167,7 @@ void ATBDeviceControllerPlugin::onAllDoorsClosed()
// TODO: // TODO:
// - check for errors, switch to mode IDLE // - check for errors, switch to mode IDLE
qCritical() << "TODO: implement ATBDeviceControllerPlugin::onAllDoorsClosed()"; qCritical() << "ATBDeviceControllerPlugin::onAllDoorsClosed()";
emit this->requestModeIDLE(); emit this->requestModeIDLE();
} }