0

最近,我使用 Raspberry Pi 安装了我的新 DS18B20 温度传感器。它运行良好,我设法从 Adafruit 学习系统中修改了一个程序,以便在通过键盘输入询问时获得温度。下一步,我正在尝试将温度读数写入文件。整个代码是:

import os
import glob
import time
import sys

os.system('modprobe w1-gpio')
os.system('modprobe w1-therm')
 
base_dir = '/sys/bus/w1/devices/'
device_folder = glob.glob(base_dir + '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 = int(temp_string) / 1000.0
        return temp_c

def write_temp():
    localtime=time.asctime(time.localtime(time.time())
    f = open("my temp",'w')
    f.write(print localtime,read_temp())
    f.close()

while True:
    yes = set(['yes','y','ye',''])
    no = set(['no','n'])
    choix = raw_input("Temperature reading?(Y/N)")
    if choix in yes : write_temp()
    if choix in no : sys.exit()

我们感兴趣的部分是这个:

def write_temp():
        localtime=time.asctime(time.localtime(time.time())
        f = open("my temp",'w')
        f.write(print localtime,read_temp())
        f.close()

树莓派给我这个:

There's an error in your program : Invalid syntax

然后突出显示f从线f = open("my temp",'w')

我也试过了fo,它不起作用。尽管如此,当我尝试在代码之前不放任何逻辑时没有错误,就像这样(这是一个测试代码,它与前面的代码无关):

f = open("test",'w')
f.write("hello")

您对如何使其工作有任何线索吗?这可能很简单,但总的来说,我是 python 和程序的新手。

4

1 回答 1

8

由于代码缺少右括号“)”,因此引发了此语法错误。

因此,下一行将向解释器抛出错误,因为您之前的语句不完整。这种情况经常发生。

def write_temp():
localtime=time.asctime(time.localtime(time.time())  # <----- need one more ")"
f = open("my temp",'w')
f.write(print localtime,read_temp())
f.close()
于 2013-08-17T09:16:57.953 回答