Skip to main content

hazard_lights_off()

Description#

Turns off flashing front and back LEDs

Syntax#

hazard_lights_off()

Parameters#

None

Returns#

None

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