Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ubuntu fix #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions fancontrol.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
#!/usr/bin/env python3

import time
import os

from gpiozero import OutputDevice
os.environ["GPIOZERO_PIN_FACTORY"] = "RPiGPIO"

from gpiozero import OutputDevice

ON_THRESHOLD = 65 # (degrees Celsius) Fan kicks on at this temperature.
OFF_THRESHOLD = 55 # (degress Celsius) Fan shuts off at this temperature.
ON_THRESHOLD = 60 # (degrees Celsius) Fan kicks on at this temperature.
OFF_THRESHOLD = 55 # (degrees Celsius) Fan shuts off at this temperature.
SLEEP_INTERVAL = 5 # (seconds) How often we check the core temperature.
GPIO_PIN = 17 # Which GPIO pin you're using to control the fan.

GPIO_PIN = 4 # Which GPIO pin you're using to control the fan.

def get_temp():
"""Get the core temperature.

Read file from /sys to get CPU temp in temp in C *1000

Returns:
int: The core temperature in thousanths of degrees Celsius.
"""
Expand Down