mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-10 05:22:06 +08:00
df25dfbcdd
version: sunnypilot v2026.002.000 (staging)
date: 2026-06-27T13:50:10
master commit: da6313dbe9
18 lines
332 B
Python
Executable File
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)
|
|
|