Created
October 26, 2024 14:05
-
-
Save augustin64/8cc5e31886dba32f736534075b9cc850 to your computer and use it in GitHub Desktop.
Activate RPI's fan based on its temperature, and define certain off hours
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import RPi.GPIO as GPIO | |
import subprocess | |
import datetime | |
import time | |
SLEEPING_PERIOD=(21, 7) | |
MAX_TEMP=50 | |
GPIO.setmode(GPIO.BOARD) | |
GPIO.setup(8, GPIO.OUT) | |
def start_fan(): | |
GPIO.output(8, GPIO.HIGH) | |
def stop_fan(): | |
GPIO.output(8, GPIO.LOW) | |
def get_temp(): | |
out = subprocess.check_output(["vcgencmd", "measure_temp"]) | |
return float(out.decode().split("=")[1].split("'")[0]) | |
while True: | |
try: | |
if get_temp() >= MAX_TEMP and (datetime.datetime.now().hour >= SLEEPING_PERIOD[1] and datetime.datetime.now().hour <= SLEEPING_PERIOD[0]): | |
start_fan() | |
else: | |
stop_fan() | |
time.sleep(30) | |
except KeyboardInterrupt: | |
stop_fan() | |
GPIO.cleanup() | |
print("Bye!") | |
break | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment