added port config

This commit is contained in:
Bernhard Trinnes 2018-11-14 10:45:48 +01:00 committed by Michael Zanetti
parent 89ed46dcb2
commit 5b987c59c5

View File

@ -367,10 +367,9 @@ void DevicePluginUniPi::setOutput(const QString &circuit, bool value)
void DevicePluginUniPi::connectToEvok() void DevicePluginUniPi::connectToEvok()
{ {
if (m_webSocket == NULL) { if ((m_webSocket == NULL) || !m_webSocket) {
int port = 8080; int port = configValue(uniPiPortParamTypeId).toInt();
//configValue(uniPiPortParamTypeId).toInt(); //FIXME plugin configuration loading currently not possible in init
m_webSocket = new QWebSocket(); m_webSocket = new QWebSocket();
connect(m_webSocket, &QWebSocket::connected, this, &DevicePluginUniPi::onWebSocketConnected); connect(m_webSocket, &QWebSocket::connected, this, &DevicePluginUniPi::onWebSocketConnected);