基于DS18B20数字温度传感器的温度计程序
时间: 2023-09-12 17:12:07 浏览: 89
好的,以下是基于DS18B20数字温度传感器的温度计程序的示例代码:
```python
import os
import glob
import time
os.system('modprobe w1-gpio')
os.system('modprobe w1-therm')
device_folder = glob.glob('/sys/bus/w1/devices/28*')[0]
device_file = device_folder + '/w1_slave'
def read_temp_raw():
f = open(device_file, 'r')
lines = f.readlines()
f.close()
return lines
def read_temp():
lines = read_temp_raw()
while lines[0].strip()[-3:] != 'YES':
time.sleep(0.2)
lines = read_temp_raw()
equals_pos = lines[1].find('t=')
if equals_pos != -1:
temp_string = lines[1][equals_pos+2:]
temp_c = float(temp_string) / 1000.0
return temp_c
while True:
print("Temperature: %.2f C" % read_temp())
time.sleep(1)
```
这个程序首先需要导入必要的库和模块,然后设置传感器读取的文件路径。`read_temp_raw()` 函数读取传感器的原始数据,`read_temp()` 函数解析原始数据并返回摄氏温度值。在主程序中,我们不断读取温度并打印输出。注意,这个程序需要在树莓派上运行。
阅读全文