-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathscript.js
147 lines (128 loc) · 4.11 KB
/
script.js
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*
Bare minimum client example for mqtt.js
On document load, this script gets two divs from the HTML
for local and remote messages. Then it attempts
to connect to the broker. Once every two seconds,
it sends the local time if it's connected.
The publish button allows you to turn on and off publishing status.
created 29 Dec 2022
modified 5 Feb 2023
by Tom Igoe
*/
// All these brokers work with this code.
// Uncomment the one you want to use.
////// emqx. Works in both basic WS and TLS WS:
// const broker = 'wss://broker.emqx.io:8084/mqtt'
// const broker = 'ws://broker.emqx.io:8083/mqtt'
//////// shiftr.io desktop client.
// Fill in your desktop IP address for localhost:
// const broker = 'ws://localhost:1884';
//////// shiftr.io, requires username and password
// (see options variable below):
const broker = 'wss://public.cloud.shiftr.io';
//////// test.mosquitto.org, uses no username and password:
// const broker = 'wss://test.mosquitto.org:8081';
// MQTT client:
let client;
// connection options:
let options = {
// Clean session
clean: true,
// connect timeout in ms:
connectTimeout: 10000,
// Authentication
// add a random number for a unique client ID:
clientId: 'mqttJsClient-' + Math.floor(Math.random()*1000000) ,
// add these in for public.cloud.shiftr.io:
username: 'public',
password: 'public'
}
// topic to subscribe to when you connect:
let topic = 'aardvarks';
// divs to show messages:
let localDiv, remoteDiv;
// whether the client should be publishing or not:
let publishing = true;
function setup() {
// put the divs in variables for ease of use:
localDiv = document.getElementById('local');
remoteDiv = document.getElementById('remote');
// set text of localDiv:
localDiv.innerHTML = 'trying to connect';
// attempt to connect:
client = mqtt.connect(broker, options);
// set listeners:
client.on('connect', onConnect);
client.on('close', onDisconnect);
client.on('message', onMessage);
client.on('error', onError);
}
function loop() {
// if the client is connected, publish:
if (client.connected && publishing) {
// make a message with a random number from 0-255
let thisMessage = Math.floor(Math.random() * 255).toString();
// publish to broker:
client.publish(topic, thisMessage);
// update localDiv text:
localDiv.innerHTML = 'published to broker.'
}
}
// changes the status of the publishing variable
// on a click of the publishStatus button:
function changeSendStatus(target) {
// change the publishing status:
publishing = !publishing;
// set the html of the button accordingly:
if (publishing) {
target.innerHTML = 'stop publishing';
} else {
target.innerHTML = 'start publishing';
}
}
// handler for mqtt connect event:
function onConnect() {
// update localDiv text:
localDiv.innerHTML = 'connected to broker. Subscribing...'
// subscribe to the topic:
client.subscribe(topic, onSubscribe);
}
// handler for mqtt disconnect event:
function onDisconnect() {
// update localDiv text:
localDiv.innerHTML = 'disconnected from broker.'
}
// handler for mqtt error event:
function onError(error) {
// update localDiv text:
localDiv.innerHTML = error;
}
// handler for mqtt subscribe event:
function onSubscribe(response, error) {
if (!error) {
// update localDiv text:
localDiv.innerHTML = 'Subscribed to broker.';
} else {
// update localDiv text with the error:
localDiv.innerHTML = error;
}
}
// handler for mqtt message received event:
function onMessage(topic, payload, packet) {
let result = 'received a message on topic: ' + topic;
// message is a Buffer, so convert to a string:
result += '<br>message payload: ' + payload.toString();
// packet is a JSON object, so list its elements:
result += '<br>MQTT packet: <ul>';
for (let item in packet) {
result += '<li>' + item + ': ' + packet[item] + '</li>';
}
// close the ul tag
result += '</ul>';
// update the remote div text:
remoteDiv.innerHTML = result;
}
// on page load, call the setup function:
document.addEventListener('DOMContentLoaded', setup);
// run a loop every 2 seconds:
setInterval(loop, 2000);