forked from flespi-software/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.js
38 lines (32 loc) · 1.14 KB
/
example.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
const mqtt = require('mqtt');
const client = mqtt.connect('mqtts://mqtt.flespi.io:8883', {
clientId: 'flespi-examples-mqtt-client-nodejs',
// see https://flespi.com/kb/tokens-access-keys-to-flespi-platform to read about flespi tokens
username: `FlespiToken ${process.env.FlespiToken}`,
protocolVersion: 5,
clean: true,
});
console.log('mqtt client created, connecting...');
client.on('connect', () => {
console.log('connected, subscribing to "test" topic...');
client.subscribe('test', {qos: 1}, (err) => {
if (err) {
console.log('failed to subscribe to topic "test":', err);
return;
}
console.log('subscribed to "test" topic, publishing message...');
client.publish('test', 'hello from flespi mqtt client example script!', {qos: 1});
});
});
client.on('message', (topic, msg) => {
console.log(`received message in topic "${topic}": "${msg.toString('utf8')}"`);
console.log('disconnecting...');
client.end();
});
client.on('close', () => {
console.log('disconnected');
})
client.on('error', (err) => {
console.log('mqtt client error:', err);
client.end(true) // force disconnect and stop the script
});