96 lines
3.1 KiB
HTML
96 lines
3.1 KiB
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>AquaMaster Button-Simulator</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>AquaMaster Button-Simulator</h1>
|
|
<div class="connection">
|
|
<input id="brokerUrl" type="text" placeholder="mqtt://192.168.10.1:1883" />
|
|
<button id="btnConnect" class="primary">Verbinden</button>
|
|
<button id="btnDisconnect">Trennen</button>
|
|
<span id="status" class="status offline">offline</span>
|
|
</div>
|
|
</header>
|
|
|
|
<section class="grid">
|
|
<div class="lane lane1">
|
|
<h2>Bahn 1</h2>
|
|
<div class="button-card" data-button="start1">
|
|
<div class="button-header">
|
|
<span class="role">Start 1</span>
|
|
<input class="mac" type="text" spellcheck="false" />
|
|
</div>
|
|
<button class="press press-start">PRESS</button>
|
|
<div class="battery">
|
|
<label>Akku (mV): <span class="mv-value">3700</span></label>
|
|
<input class="mv" type="range" min="3000" max="4200" step="10" value="3700" />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="button-card" data-button="stop1">
|
|
<div class="button-header">
|
|
<span class="role">Stop 1</span>
|
|
<input class="mac" type="text" spellcheck="false" />
|
|
</div>
|
|
<button class="press press-stop">PRESS</button>
|
|
<div class="battery">
|
|
<label>Akku (mV): <span class="mv-value">3700</span></label>
|
|
<input class="mv" type="range" min="3000" max="4200" step="10" value="3700" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="lane lane2">
|
|
<h2>Bahn 2</h2>
|
|
<div class="button-card" data-button="start2">
|
|
<div class="button-header">
|
|
<span class="role">Start 2</span>
|
|
<input class="mac" type="text" spellcheck="false" />
|
|
</div>
|
|
<button class="press press-start">PRESS</button>
|
|
<div class="battery">
|
|
<label>Akku (mV): <span class="mv-value">3700</span></label>
|
|
<input class="mv" type="range" min="3000" max="4200" step="10" value="3700" />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="button-card" data-button="stop2">
|
|
<div class="button-header">
|
|
<span class="role">Stop 2</span>
|
|
<input class="mac" type="text" spellcheck="false" />
|
|
</div>
|
|
<button class="press press-stop">PRESS</button>
|
|
<div class="battery">
|
|
<label>Akku (mV): <span class="mv-value">3700</span></label>
|
|
<input class="mv" type="range" min="3000" max="4200" step="10" value="3700" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="controls">
|
|
<label>
|
|
<input id="hbEnabled" type="checkbox" checked />
|
|
Heartbeat + Battery automatisch senden
|
|
</label>
|
|
<label>
|
|
Intervall (ms):
|
|
<input id="hbInterval" type="number" min="500" max="60000" step="500" value="3000" />
|
|
</label>
|
|
<button id="btnHbApply">Übernehmen</button>
|
|
</section>
|
|
|
|
<section class="log-wrap">
|
|
<h3>Log</h3>
|
|
<pre id="log"></pre>
|
|
</section>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|