gpt4 book ai didi

Web 服务器上的 Python 输出 REALTIME

转载 作者:行者123 更新时间:2023-12-04 01:03:37 26 4
gpt4 key购买 nike

我有一个带有 I2C 温度传感器的 Raspberry Pi。

Python代码:

import board
import adafruit_mlx90614
import time

i2c = board.I2C()
mlx = adafruit_mlx90614.MLX90614(i2c)
while True:
print("Object Temp: ", mlx.object_temperature)

输出:

Object Temp:  21.89
Object Temp: 22.73
Object Temp: 27.31

它工作正常。但是我怎样才能使输出显示在本地网络服务器上呢?REALTIME,没有页面刷新?就像文字一样。没什么特别的。

谢谢

最佳答案

我们首先需要搭建一个python网络服务器,我这里选择使用Flask。其次,我们需要创建一个 HTML 文件,其中包含每隔几秒更新一次数据的脚本(我在这里选择 5 秒)。因此,只需在名为/templates 的新目录中创建一个名为 index.html 的新文件。然后只需在 index.html 文件中添加以下 html。

PS:您可以在脚本的 setInterval 函数中更改 5000 的值,只需确保以千位计数,例如 3 秒就是 3000。

Python 代码:

import board
import adafruit_mlx90614
import time

i2c = board.I2C()
mlx = adafruit_mlx90614.MLX90614(i2c)

from flask import Flask, render_template
app = Flask(__name__)

@app.route('/temp')
def getTemp():
return str(mlx.object_temperature)

@app.route('/')
def hello_world():
return render_template("index.html")

if __name__ == '__main__':
app.run(debug=True)

HTML代码:

<html>
<head>
</head>
<body>
<p id="temp">Object Temp: 0</p>
<script>
const Http = new XMLHttpRequest();
const url='http://localhost:5000/temp';

function checkTemp(){
Http.open("GET", url);
Http.send();
Http.onreadystatechange = (e) => {
document.querySelector("#temp").innerHTML = "Object Temp: " + Http.responseText;
}
}

setInterval(checkTemp, 5000);
</script>
</body>
</html>

关于Web 服务器上的 Python 输出 REALTIME,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67260071/

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