Skip to content
This repository was archived by the owner on May 6, 2021. It is now read-only.

Commit fdc93ea

Browse files
committed
Remove couts.
1 parent f450eeb commit fdc93ea

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

libsrc/leddevice/LedDevicePhilipsHue.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,12 +178,10 @@ int LedDevicePhilipsHue::write(const std::vector<ColorRgb> & ledValues) {
178178
// From black to a color.
179179
if (lamp.color == lamp.black && xy != lamp.black) {
180180
put(getStateRoute(lamp.id), QString("{\"on\": true}"));
181-
std::cout << "switchon" << std::endl;
182181
}
183182
// From a color to black.
184183
else if (lamp.color != lamp.black && xy == lamp.black) {
185184
put(getStateRoute(lamp.id), QString("{\"on\": false}"));
186-
std::cout << "switchoff" << std::endl;
187185
}
188186
}
189187
// Remember last color.

0 commit comments

Comments
 (0)