openpilot is an open source driver assistance system. openpilot performs the functions of Automated Lane Centering and Adaptive Cruise Control for over 200 supported car makes and models.
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.
 
 
 
 
 
 

20 lines
371 B

#!/usr/bin/env python3
import sys
import time
from selfdrive.thermald.thermald import setup_eon_fan, set_eon_fan
if __name__ == "__main__":
val = 0
setup_eon_fan()
if len(sys.argv) > 1:
set_eon_fan(int(sys.argv[1]))
exit(0)
while True:
sys.stderr.write("setting fan to %d\n" % val)
set_eon_fan(val)
time.sleep(2)
val += 1
val %= 4