from flask import Flask, jsonify, render_template_string html_page = """ Modbus 即時資料

📊 Modbus 即時資料

RPM (地址1633): 載入中...

AI 電壓 (地址1635): 載入中...

類比訊號值 (地址1637): 載入中...

""" @app.route("/") def index(): return render_template_string(html_page)