dragonpilot - 基於 openpilot 的開源駕駛輔助系統
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.

21 lines
371 B

5 years ago
#!/usr/bin/env python3
import sys
import time
from selfdrive.thermald.thermald import setup_eon_fan, set_eon_fan
5 years ago
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