Files
sunnypilot/panda/scripts/relay_test.py
github-actions[bot] cacbbff431 sunnypilot v2026.001.000 release
date: 2026-04-07T10:14:20
master commit: e541489b33
2026-04-07 10:14:21 +00:00

18 lines
332 B
Python
Executable File

#!/usr/bin/env python
import time
from opendbc.car.structs import CarParams
from panda import Panda
p = Panda()
while True:
p.set_safety_mode(CarParams.SafetyModel.toyota)
p.send_heartbeat()
print("ON")
time.sleep(1)
p.set_safety_mode(CarParams.SafetyModel.noOutput)
p.send_heartbeat()
print("OFF")
time.sleep(1)