Fixed display brightness and discovery speed

This commit is contained in:
Dorian Zedler 2020-10-15 17:21:31 +02:00
parent a19d7582cf
commit 7adb446081
Signed by: dorian
GPG key ID: D3B255CB8BC7CD37
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 45ce9b1cd7372d12bcd0dc35a1387456785c0a3c
Subproject commit 76e457593e889885fd410fdbcdd659706a1eceb8

View file

@ -276,7 +276,7 @@ void OmobiDisplayBackend::setDisplayBrightness(int brightness) {
this->displayBrightness = brightness;
this->sendBluetoothCommand(SetDisplayBrightnessCommand, this->displayBrightness);
this->sendBluetoothCommand(SetDisplayBrightnessCommand, QVariantMap{{"displayBrightness",this->displayBrightness}});
emit this->displayBrightnessChanged();
}