We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c06bea7 commit 68e5293Copy full SHA for 68e5293
buildhat/light.py
@@ -30,4 +30,12 @@ def brightness(self, brightness):
30
"""
31
if not (brightness >= 0 and brightness <= 100):
32
raise LightError("Need brightness arg, of 0 to 100")
33
- self._write(f"port {self.port} ; on ; plimit {brightness / 100.0}\r")
+ if brightness > 0:
34
+ self._write(f"port {self.port} ; on ; set {brightness / 100.0}\r")
35
+ else:
36
+ self.off()
37
+
38
+ def off(self):
39
+ """Turn off lights"""
40
+ # Using coast to turn off DIY lights completely
41
+ self._write(f"port {self.port} ; coast\r")
0 commit comments