5V风扇是笔记本拆下来的,接了个ss8550 NPNPNP三极管。
接线:
pi 5V --- 风扇5V
风扇GND --- 三接管C极
pi BCM 18 --- 三极管B极
pi GND --- 三极管E极
效果图:
代码:
#!/usr/bin/python3
# encoding: utf-8
import RPi.GPIO
import time
RPi.GPIO.setwarnings(False)
RPi.GPIO.setmode(RPi.GPIO.BCM)
RPi.GPIO.setup(18, RPi.GPIO.OUT)
pwm = RPi.GPIO.PWM(18, 75)
duty = 0
lastDuty = 0
try:
while True:
tmpFile = open('/sys/class/thermal/thermal_zone0/temp')
temp = int(tmpFile.read())
tmpFile.close()
duty = 100;
if temp >= 34500 :
duty = 60
if lastDuty >= 36500 :
duty = 50
if temp >= 38500:
duty = 40
if temp >= 40500:
duty = 30