Skip to content

Instantly share code, notes, and snippets.

@tuannguyenssu
Created September 29, 2019 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tuannguyenssu/3d87cb7445e5d83154340597c88ef63a to your computer and use it in GitHub Desktop.
Save tuannguyenssu/3d87cb7445e5d83154340597c88ef63a to your computer and use it in GitHub Desktop.
var mqtt = require('mqtt');
var settings = {
mqttServerUrl : "localhost",
port : 18833,
topic : "myTopic"
}
var client = mqtt.connect('mqtt://' + settings.mqttServerUrl + ":" + settings.port);
client.on('connect', function () {
setInterval(function() {
var message = "Hello mqtt";
client.publish(settings.topic, message);
console.log('Sent ' + message + " to " + settings.topic);
}, 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment