gpt4 book ai didi

python - 为什么我的代码不能在 python 中运行这段代码?

转载 作者:行者123 更新时间:2023-11-29 16:28:09 27 4
gpt4 key购买 nike

我正在我的 raspberry pi 3 上使用最新的 raspbian 软件在 Python 3(IDLE) 上运行此代码。使用此代码,我尝试通过 ds18b20 传感器获取温度数据,并将相同的数据发送到我创建的 mysql 数据库。

非常感谢您的帮助!

从这段代码中执行的所有内容是:

Connected to MySQL database... MySQL Server version on  5.5.5-10.1.37-MariaDB-0+deb9u1
Your connected to - ('temp_pi',)

也就是说mysql数据库之间的连接已经建立。但此代码的目标是通过 ds18b20 传感器获取温度数据并将相同的数据发送到 TAB_CLASSROOM 表中。

import os
import glob
import time
import MySQLdb
import datetime
import mysql.connector
from mysql.connector import Error

i = datetime.datetime.now()

# Establish the connection to the mysql database.
try:
connection = mysql.connector.connect(host='127.0.0.1',
database='temp_pi',
user='root',
password='test')

if connection.is_connected():
db_Info = connection.get_server_info()
print("Connected to MySQL database... MySQL Server version on ",db_Info)
cursor = connection.cursor()
cursor.execute("select database();")
record = cursor.fetchone()
print ("Your connected to - ", record)

except Error as e :
print ("Error while connecting to MySQL", e)

# Obtain the temperature data through the ds18b20 sensor.
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 = float(temp_string) / 1000.0
temp_f = temp_c * 9.0 / 5.0 + 32.0
return temp_c

# Send the temperature data into a specific table entitled TAB_CLASSROOM.
while True:
print("recording data into database(period = 5s.)....press ctrl+Z to stop!")

valT = str(read_temp())

year = str(i.year)
month = str(i.month)
day = str(i.day)
date = day + "-" + month + "-" + year

hour = str(i.hour)
minute = str(i.minute)
second = str(i.second)
timestr = hour + ":" + minute + ":" + second

try:
cur.execute("""INSERT INTO TAB_CLASSROOM(temp_c,T_Date,T_Time) VALUES(%s,%s,%s)""",(valT,date,timestr))
db.commit()
except:
db.rollback()

time.sleep(10)

cur.close()
db.close()

最佳答案

您尚未调用 read_temp 函数,您的代码仅定义了它。

while True 是缩进的,这意味着它是 read_temp 函数的组成部分。也许您想删除从那里到末尾的缩进。

这样 while True: 就会被执行。

关于python - 为什么我的代码不能在 python 中运行这段代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54120900/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com