Skip to content

Commit 68e5293

Browse files
authored
Use set rather than plimit for train light control (#188)
* Use set rather than plimit for train light control * Use coast to switch off LEDs
1 parent c06bea7 commit 68e5293

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

buildhat/light.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,12 @@ def brightness(self, brightness):
3030
"""
3131
if not (brightness >= 0 and brightness <= 100):
3232
raise LightError("Need brightness arg, of 0 to 100")
33-
self._write(f"port {self.port} ; on ; plimit {brightness / 100.0}\r")
33+
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

Comments
 (0)