mirror of https://github.com/lumapu/ahoy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
3.4 KiB
72 lines
3.4 KiB
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Index</title>
|
|
<link rel="stylesheet" type="text/css" href="style.css"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script type="text/javascript" src="api.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>AHOY</h1>
|
|
<div id="content" class="content">
|
|
<p>
|
|
<a href="/visualization">Visualization</a><br/>
|
|
<br/>
|
|
<a href="/setup">Setup</a><br/>
|
|
</p>
|
|
<p><span class="des">Uptime: </span><span id="uptime"></span></p>
|
|
<p><span class="des">Statistics: </span><pre id="stat"></pre></p>
|
|
<p>Every {TS}seconds the values are updated</p>
|
|
|
|
<div id="note">
|
|
This project was started from <a href="https://www.mikrocontroller.net/topic/525778" target="_blank">this discussion. (Mikrocontroller.net)</a><br/>
|
|
New updates can be found on Github: <a href="https://github.com/grindylow/ahoy" target="_blank">https://github.com/grindylow/ahoy</a><br/>
|
|
<br/>
|
|
Please report issues using the feature provided by <a href="https://github.com/grindylow/ahoy/issues">Github</a><br/>
|
|
<br/>
|
|
Discuss with us on <a href="https://discord.gg/WzhxEY62mB">Discord</a>
|
|
<br/>
|
|
<p class="lic"><a href="https://creativecommons.org/licenses/by-nc-sa/3.0/de">Creative Commons - https://creativecommons.org/licenses/by-nc-sa/3.0/de/</a><br/>
|
|
Check the licenses which are published on <a href="https://github.com/grindylow/ahoy">https://github.com/grindylow/ahoy</a> as well</p>
|
|
</div>
|
|
</div>
|
|
<div id="footer">
|
|
<p class="left">© 2022</p>
|
|
<p class="left"><a href="/update">Update Firmware</a></p>
|
|
<p class="right" id="version"></p>
|
|
<p class="right"><a href="/reboot">Reboot</a></p>
|
|
</div>
|
|
<script type="text/javascript">
|
|
function parseSys(obj) {
|
|
document.getElementById("version").innerHTML = "Git SHA: " + obj["build"] + " :: " + obj["version"];
|
|
|
|
var date = new Date(obj["ts_now"] * 1000);
|
|
var up = obj["ts_uptime"];
|
|
var days = parseInt(up / 86400) % 365;
|
|
var hrs = parseInt(up / 3600) % 24;
|
|
var min = parseInt(up / 60) % 60;
|
|
var sec = up % 60;
|
|
document.getElementById("uptime").innerHTML = days + " Days, "
|
|
+ ("0"+hrs).substr(-2) + ":"
|
|
+ ("0"+min).substr(-2) + ":"
|
|
+ ("0"+sec).substr(-2) + "; now: "
|
|
+ ("0"+date.getHours()).substr(-2) + ":"
|
|
+ ("0"+date.getMinutes()).substr(-2) + ":"
|
|
+ ("0"+date.getSeconds()).substr(-2);
|
|
}
|
|
|
|
function parseStat(obj) {
|
|
document.getElementById("stat").innerHTML = "RX success: " + obj["rx_success"]
|
|
+ "\nRX fail: " + obj["rx_fail"]
|
|
+ "\nFrames received: " + obj["frame_cnt"]
|
|
+ "\nTX Cnt: " + obj["tx_cnt"];
|
|
}
|
|
|
|
window.setInterval("getAjax('/api/system', parseSys)", 30000);
|
|
window.setInterval("getAjax('/api/system', parseStat)", 30000);
|
|
|
|
getAjax("/api/system", parseSys);
|
|
getAjax("/api/statistics", parseStat);
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|