Implemented basic functionality

This commit is contained in:
2023-02-15 01:12:19 +01:00
parent e492cf82b9
commit 64cff3ce78
21 changed files with 1441 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#include "dmxcontrollerthread.h"
#include "dmxcontroller.h"
DmxControllerThread::DmxControllerThread(DmxController &controller) :
QThread{&controller},
m_controller{controller}
{
}
void DmxControllerThread::run()
{
while (!isInterruptionRequested())
m_controller.sendDmxBuffer();
}