mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-09-04 18:53:41 +08:00
f5fe67dc4a
version: sunnypilot v2026.003.000 (feature-branch)
date: 2026-08-25T06:10:04
master commit: 232482477d
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)
|
|
|