Fixes for A8 remote control. Added logging messages

This commit is contained in:
Tuomas Järvinen
2024-07-04 16:40:00 +03:00
parent 989fd314f2
commit 7e4c43dec9
4 changed files with 18 additions and 13 deletions
+6 -3
View File
@@ -33,9 +33,12 @@ int main(int argc, char *argv[])
// Remote mode will read commands from pipe
if (useRemoteMode == true) {
RemoteControl remoteControl;
} else {
LocalControl localControl;
qDebug() << "Creating new RemoteControl object";
new RemoteControl();
}
else {
qDebug() << "Creating new LocalControl object";
new LocalControl();
}
return app.exec();