implement adjustable image2ledmaptype for proto (#355)

add clean of qrc on make clean
This commit is contained in:
redPanther
2016-12-30 13:58:25 +01:00
committed by GitHub
parent 2c61b49b57
commit 8f4341c5c6
3 changed files with 10 additions and 4 deletions

View File

@@ -290,16 +290,13 @@
},
"hsv" : {
"type" : "object",
"required" : false,
"properties" : {
"saturationGain" : {
"type" : "number",
"required" : false,
"minimum" : 0.0
},
"valueGain" : {
"type" : "number",
"required" : false,
"minimum" : 0.0
}
},

View File

@@ -31,7 +31,8 @@ ProtoClientConnection::ProtoClientConnection(QTcpSocket *socket)
// connect internal signals and slots
connect(_socket, SIGNAL(disconnected()), this, SLOT(socketClosed()));
connect(_socket, SIGNAL(readyRead()), this, SLOT(readData()));
connect(_hyperion, SIGNAL(imageToLedsMappingChanged(int)), _imageProcessor, SLOT(setLedMappingType(int)));
_priorityChannelName = "proto@"+ _socket->peerAddress().toString().toStdString();
}