mirror of
https://github.com/nymea/nymea-plugins.git
synced 2026-07-18 00:43:48 +02:00
added port config
This commit is contained in:
parent
1aa1e42528
commit
c38e15c540
@ -367,10 +367,9 @@ void DevicePluginUniPi::setOutput(const QString &circuit, bool value)
|
||||
|
||||
void DevicePluginUniPi::connectToEvok()
|
||||
{
|
||||
if (m_webSocket == NULL) {
|
||||
if ((m_webSocket == NULL) || !m_webSocket) {
|
||||
|
||||
int port = 8080;
|
||||
//configValue(uniPiPortParamTypeId).toInt(); //FIXME plugin configuration loading currently not possible in init
|
||||
int port = configValue(uniPiPortParamTypeId).toInt();
|
||||
|
||||
m_webSocket = new QWebSocket();
|
||||
connect(m_webSocket, &QWebSocket::connected, this, &DevicePluginUniPi::onWebSocketConnected);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user