Unsolved Script to turn off cooler
-
@Pdagarcia where would you put this script?
-
@azvarel I would place the script into
/recalbox/scripts
and call the script as a background process from the startup directory/etc/init.d
for example asS32StartFanControl
This could look like this (just one proposal, you can do it however you like it):#!/usr/bin/python import subprocess try: subprocess.Popen(["python","/recalbox/scripts/fanControl.py"]) except KeyboardInterrupt: print "Quit"
I have called my script that I start as
fanControl.py
-
@lackyluuk thanks
-
@azvarel I'm with the same problem, did you work? which method did you use?