1. 树莓派无线鼠标延时
1. 打开文件进行编辑
sudo nano /boot/cmdline.txt
2. 在文件中末尾位置(不要换行)添加如下内容
usbhid.mousepoll=0
3. 重启树莓派生效
sudo reboot
2. 树莓派发热非常严重
a) 必须安装散热风扇。对于风扇的转速要求不高,主要需要进行空气对流,实测情况:
1. 未安装风扇情况:CPU核心温度110℃
2. 安装的风扇但使用抽风方式:CPU核心温度90℃
3. 安装风扇对着CPU散热方式:CPU核心温度70℃,在此温度下树莓派工作完全正常
b) CPU温度监测代码
1 import os 2 import sys 3 import RPi.GPIO as GPIO 4 import time 5 6 #fans_Control pin initial 7 fans_pin = 17 8 GPIO.setwarnings(False) 9 GPIO.setmode(GPIO.BCM) 10 GPIO.setup(fans_pin,GPIO.OUT) 11 12 # Return CPU temperature as a character string 13 def getCPUtemperature(): 14 res = os.popen('vcgencmd measure_temp').readline() 15 return(res.replace("temp=","").replace("'C ","")) 16 17 Temp = getCPUtemperature() 18 Temp_Value = float(Temp) 19 if Temp_Value > 58.0: 20 GPIO.output(fans_pin,False) 21 elif Temp_Value < 53.0: 22 GPIO.output(fans_pin,True)
未完待续~