We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 286be63 commit 5a4b4a7Copy full SHA for 5a4b4a7
Modules/RoomControl/MagicHueAPI.py
@@ -304,7 +304,8 @@ def get_status(self):
304
"white": self.light.w,
305
"cold_white": self.light.cw,
306
"white_enabled": self.light.is_white,
307
- "mode": self.light.mode._status_text() if not self.is_auto else "AUTOMATIC",
+ "mode": self.light.mode._status_text(),
308
+ "control_type": "MANUAL" if not self.is_auto else "AUTOMATIC",
309
}
310
return status
311
except magichue.exceptions.MagicHueAPIError as e:
0 commit comments