diff --git a/Code/devterm_fan_daemon_cm4/temp_fan_daemon.py b/Code/devterm_fan_daemon_cm4/temp_fan_daemon.py index 66262f5..447b745 100644 --- a/Code/devterm_fan_daemon_cm4/temp_fan_daemon.py +++ b/Code/devterm_fan_daemon_cm4/temp_fan_daemon.py @@ -11,7 +11,7 @@ def isDigit(x): return False def measure_temp(): - temp = os.popen("/opt/vc/bin/vcgencmd measure_temp").readline() + temp = os.popen("/usr/bin/vcgencmd measure_temp").readline() temp2 = temp.replace("temp=","") temp3 = temp2.replace("'C","").strip() #print(temp3)