树莓派根据温度自动启动风扇,python3代码简单

视频演示

https://www.bilibili.com/video/av78150577/

准备

  1. 风扇 x 1
  2. 三极管(我用的S8550)x 1
  3. 杜邦线 x 若干
  4. 面包板

接线

点击查看树莓派 40Pin 引脚对照表

接线图

代码

python3

# -*- coding: utf-8 -*-

# 树莓派 根据温度自动启动或停用风扇
import RPi.GPIO as GPIO
import time

FAN=14 #BCM引脚编号

GPIO.setmode(GPIO.BCM)
GPIO.setup(FAN,GPIO.OUT)
GPIO.output(FAN,GPIO.HIGH)

# 设置风扇
def set_fan(value):
    print('设置风扇(BCM14)电平状态:',value)
    GPIO.output(FAN,value)
    pass

while True:

    file = open("/sys/class/thermal/thermal_zone0/temp")
    # 读取结果,并转换为浮点数
    temp = float(file.read()) / 1000
    # 关闭文件
    file.close()
    print("温度: %.1f" %temp)
    if temp>=50:
        set_fan(0)#低电平,为开启风扇
    elif temp<=46:
        set_fan(1)#高电平,为关闭风扇
    time.sleep(10)

参考文章:

树莓派实现温度监控并控制风扇散热

你可能感兴趣的:(树莓派根据温度自动启动风扇,python3代码简单)