-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
49 lines (41 loc) · 1011 Bytes
/
test.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
<!DOCTYPE html>
<html>
<head>
<title>Test MQTT</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#logText {
height: 500px;
}
</style>
<script>
var YourDevID = '123';
</script>
</head>
<body>
<div id="logText"><div>
<script src="./lib/crypto-js.js"></script>
<script src="./lib/mqttws31.js"></script>
<script src="./config.js"></script>
<script src="./mqtt.js"></script>
<script>
function logger (msg) {
var debugText = document.getElementById('logText');
debugText.innerHTML += msg + '<br>';
debugText.scrollTop = debugText.scrollHeight;
}
function onConnected () {
// Do nothing
}
function onReceived (tag, value) {
// TODO
}
mqtt.setDebuger(logger);
mqtt.connect(MQTT_CONIFG, onConnected, onReceived);
mqtt.sendToAll(110, {});
mqtt.sendToUser(YourDevID, 110, {});
</script>
</body>
</html>