diff options
author | xengineering <me@xengineering.eu> | 2025-03-21 22:39:30 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-03-21 22:39:30 +0100 |
commit | 2ddf4682f4c11f4356b030b6474fb12fea55b8ea (patch) | |
tree | d71f952f46808d725da6f0e84dac765385df2ca1 /fw/src/index.html | |
parent | e042129eddeb06c9272a6544c67f9222c347ab10 (diff) | |
download | iot-contact-2ddf4682f4c11f4356b030b6474fb12fea55b8ea.tar iot-contact-2ddf4682f4c11f4356b030b6474fb12fea55b8ea.tar.zst iot-contact-2ddf4682f4c11f4356b030b6474fb12fea55b8ea.zip |
fw: js: Add web frontend to display heartbeat
This makes it transparent to the user that there is an active connection
to the firmware. If the connection is broken the user notices that
quickly and can re-load the page.
Diffstat (limited to 'fw/src/index.html')
-rw-r--r-- | fw/src/index.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fw/src/index.html b/fw/src/index.html index 142a1b9..5817818 100644 --- a/fw/src/index.html +++ b/fw/src/index.html @@ -9,8 +9,13 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>iot-contact</title> + <script type="text/javascript" src="/iot-contact.js"></script> </head> <body> <h4>iot-contact</h4> + <p> + <label for="heartbeat">Heartbeat</label> + <meter id="heartbeat" min="0" max="1" value="0"></meter> + </p> </body> </html> |