python 使用Raspberry Pi从DS18B20传感器中获取价值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用Raspberry Pi从DS18B20传感器中获取价值相关的知识,希望对你有一定的参考价值。

#!/usr/bin/python
# -*- coding: utf-8 -*-

import glob, os, sys
from datetime import datetime


def get_temp(device_file):
    temp_c = 0

    if os.path.isfile(device_file):
        f = open(device_file, 'r')
        lines = f.readlines()
        f.close()

        if lines[0].strip()[-3:] == 'YES':
            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


base_dir = '/sys/bus/w1/devices/'
devices_folder = glob.glob(base_dir + '28*')

for device_dir in devices_folder:
    device = os.path.basename(device_dir)

    temp = round(get_temp(device_dir+'/w1_slave'), 1)

    print device+' : '+str(temp)

以上是关于python 使用Raspberry Pi从DS18B20传感器中获取价值的主要内容,如果未能解决你的问题,请参考以下文章

python 使用Raspberry Pi从DS18B20传感器中获取价值

从 Apache Laravel PHP 控制器在 Raspberry PI 上执行 python 脚本

在Raspberry Pi上安装mitmproxy时出现python问题

我无法列出 Raspberry Pi 附近的 BLE 设备(python、btmgmt)

在Raspberry Pi上使用python3进行Bash

并行计算Python / Raspberry Pi