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