You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
272 B
17 lines
272 B
11 months ago
|
#!/usr/bin/env python
|
||
|
import time
|
||
|
from panda import Panda
|
||
|
|
||
|
p = Panda()
|
||
|
|
||
|
while True:
|
||
|
p.set_safety_mode(Panda.SAFETY_TOYOTA)
|
||
|
p.send_heartbeat()
|
||
|
print("ON")
|
||
|
time.sleep(1)
|
||
|
p.set_safety_mode(Panda.SAFETY_NOOUTPUT)
|
||
|
p.send_heartbeat()
|
||
|
print("OFF")
|
||
|
time.sleep(1)
|
||
|
|