Skip to main content

brake_lights_off()

Description#

Turns off front LEDs only

Syntax#

brake_lights_off()

Parameters#

None

Returns#

None

Example Code#
Python#
#Python code
from zumi.zumi import Zumi
import time
zumi = Zumi()
zumi.brake_lights_on()
time.sleep(2)
zumi.brake_lights_off()