Skip to main content

headlights_off()

Description#

Turns off front LEDs only

Syntax#

headlights_off()

Parameters#

None

Returns#

None

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