Skip to content

Commit a1922bb

Browse files
Merge pull request #10 from soldag/master
Fix temperature command in CommandSetWhiteV6.
2 parents b74a48a + 8914747 commit a1922bb

File tree

1 file changed

+1
-1
lines changed
  • limitlessled/group/commands

1 file changed

+1
-1
lines changed

limitlessled/group/commands/v6.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def temperature(self, temperature):
212212
:param temperature: Value to set (0.0-1.0).
213213
:return: The command.
214214
"""
215-
return self._build_command(0x05, temperature)
215+
return self._build_command(0x05, self.convert_temperature(temperature))
216216

217217

218218
class CommandSetRgbwV6(CommandSetV6):

0 commit comments

Comments
 (0)