This commit is contained in:
Fabio Manganiello 2018-08-16 01:26:10 +02:00
parent 0e2ead6826
commit f2d077354c

View file

@ -414,7 +414,7 @@ class LightHuePlugin(LightPlugin):
return self._exec('bri', int(bri), lights=lights, groups=groups) return self._exec('bri', int(bri), lights=lights, groups=groups)
@action @action
def delta_sat(self, value, lights=[], groups=[]): def delta_sat(self, delta, lights=[], groups=[]):
""" """
Change lights/groups saturation by a delta [-100, 100] compared to the current state. Change lights/groups saturation by a delta [-100, 100] compared to the current state.
@ -455,7 +455,7 @@ class LightHuePlugin(LightPlugin):
return self._exec('sat', int(sat), lights=lights, groups=groups) return self._exec('sat', int(sat), lights=lights, groups=groups)
@action @action
def delta_hue(self, value, lights=[], groups=[]): def delta_hue(self, delta, lights=[], groups=[]):
""" """
Change lights/groups hue by a delta [-100, 100] compared to the current state. Change lights/groups hue by a delta [-100, 100] compared to the current state.