Files
sunnypilot/panda/scripts/relay_test.py
T
github-actions[bot] 45515f72df sunnypilot v2026.003.000
version: sunnypilot v2026.003.000 (staging)
date: 2026-08-28T17:09:56
master commit: 1dd5a7c91d
2026-08-28 17:09:56 +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)