Skip to content

Commit c0d7633

Browse files
committed
docs: Updated README.md examples.
1 parent a937c47 commit c0d7633

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,9 @@ from busylight_core import EmbravaLights, LuxaforLights, KuandoLights
7474
embrava_lights = EmbravaLights.all_lights()
7575
if embrava_lights:
7676
light = embrava_lights[0]
77-
light.on((255, 0, 0), sound=True) # Red with audio alert
78-
light.dim() # Reduce brightness
77+
light.on((255, 0, 0)) # Red
7978

80-
# Get all Luxafor devices
79+
# Get all Luxafor devices
8180
luxafor_lights = LuxaforLights.all_lights()
8281
for light in luxafor_lights:
8382
light.on((0, 255, 0)) # Green

0 commit comments

Comments
 (0)