forked from BUE-LJ-BT/BUE-LJ-BT.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (79 loc) · 5.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#7090b7" />
<meta name="Description" content="Bürkert Connector">
<meta name="mobile-web-app-capable" content="yes">
<link rel="stylesheet" type="text/css" href="./StyleSheet.css" />
<link rel="manifest" href="A2HS_Manifest.json" />
<link rel="icon" href=icon/buerkert_logo_icon_144x144.png sizes="144x144" type="image/png">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" href=icon/buerkert_logo_icon_144x144.png sizes="144x144" type="image/png">
<title>Bürkert Connector Webpage</title>
</head>
<body>
<div class="Header">
<a href="https://www.burkert.com/en"><img src="images/Buerkert_Logo.png" alt="Bürkert"></a>
<h1>Connector</h1>
</div>
<div class="NavMenu">
<a href="./index.html" class="activeTab">Main</a>
<a href="./Help.html" class="inactiveTab">Help</a>
</div>
<div class="Main">
<h1>Bluetooth Connect</h1>
<button type="button" id="Connect" style="width:100%" class="inactiveTab">Bluetooth Connect</button>
<button id="Disconnect" style="width:100%" class="inactiveTab">Disconnect</button>
<div id="showPersistentContent" style="margin-top: 10px; width: 50%; display: grid; align-items: center; float: left;">
<button id="requestPersistentData" style="background-color: var(--Buerkert-Blue-light);">RequestPersistentData</button>
<h>Persistent data</h>
<table id="persistentDataTable" style="margin-top: 10px;"><tr><th>Name</th><th>Index</th><th>Subindex</th><th>Value</th></tr></table>
</div>
<div style="margin-top: 10px; width: 50%; display: grid; align-items: center; float: right;">
<button id="requestLiveData" class="inactiveTab" hidden="true">RequestLiveData</button>
<h>Live Value</h>
<div style="margin-top: 10px;">Temperature: <output id="liveValue"></output></div>
</div>
<div style=" margin-top: 5px; display:grid; align-items: center; float: left; width: 100%;">
<label>Bues address</label><input id="idx" type="number" class="inputGrid input1" min="1" max="99999999" step="0">
<label style="margin-top: 3px;">Datatype</label><select name="datatypes" id="datatype">
<option value="7">UINT32</option>
</select>
<label style="margin-top: 3px;">Value</label><input id="value" type="number" class="inputGrid input1" min="1" max="99999999" step="0">
<button class="inactiveTab" style="margin-top: 3px;" onclick="Send_Value()">Write persistent value</button>
</div>
<div style="margin-top: 10px; display:grid; align-items: center; float: left; width: 100%;">
<button class="inactiveTab" onclick="GetBtn_OnClick()">Get temp values</button>
<div id="iResultGrid" class="resultGrid" style="margin-top: 10px"></div>
</div>
<br><output id="debugText">Debug</output>
<!--<h1>Scan QR-Code</h1>
<button id="qr-Button" style="width:100%" class="inactiveTab">Use QR Scanner</button>
<div id="qr-Container" hidden="hidden">
<button id="qr-cam-change" class="inactiveTab" hidden="hidden" style="width:100%">Switch camera</button>
<video muted autoplay playsinline id="qr-video" style="width:80%;margin-left:10%"></video>
<b>Last QR-code: </b>
<p id="qr-result">...</p>
</div>-->
<p><br /><br /></p>
</div>
<div class="Footer" style="float: left; align-items: center;">
<p><br /><br /> <b>Bürkert Fluid Control Systems</b> <br /> Bürkert Werke GmbH & Co. KG<p>
<p style="float:left"> </p>
<a href="https://www.facebook.com/Buerkert.Fluidtechnik"><img src="icon/Facebook.png" alt="Facebook"></a>
<a href="https://twitter.com/buerkertfluid"><img src="icon/Twitter.png" alt="Twitter"></a>
<a href="https://plus.google.com/u/0/111656923746589474222/posts"><img src="icon/GooglePlus.png" alt="GooglePlus"></a>
<a href="https://www.linkedin.com/company/burkert-fluid-control-systems"><img src="icon/LinkedIn.png" alt="LinkedIn"></a>
<a href="https://www.xing.com/companies/b%C3%BCrkertfluidcontrolsystems"><img src="icon/Xing.png" alt="Xing"></a>
<a href="https://www.youtube.com/user/BuerkertFluid"><img src="icon/Youtube.png" alt="Youtube"></a>
</div>
<!--<script src="protobuf/protobuf.js" type="text/javascript"></script>-->
<script src="Bluetooth_Transfer_Protobuf.js" type="text/javascript"></script>
<script src="BluetoothCommunication.js" type="text/javascript"></script>
<!--<script src="QR-Scanner/instascan.min.js" type="text/javascript"></script>-->
<!--<script src="QR-Scanner/QR-Scanner.js" type="text/javascript"></script>-->
<script src="Page1Logic.js" type="text/javascript"></script>
</body>
</html>