Awesome
Meshblu MQTT
An simple MQTT based client for connecting to meshblu.octoblu.com
Installation:
npm install meshblu-mqtt
Example:
var Meshblu = require('meshblu-mqtt');
var config = require('./meshblu.json');
// if using meshblu-util - change your meshblu.json port to 1883
// Config Example
// {
// "uuid": "5632dd4a-e66b-43c7-bbbd-b264903e20bd",
// "token": "c84bdb43febc2702110fc7d6a9aa91cc6b783ec1",
// "hostname": "meshblu.octoblu.com",
// "port": "1883"
// }
var meshblu = new Meshblu(config);
console.log('starting...');
meshblu.connect(function(response){
// Update Device - response emits event 'config'
meshblu.update({uuid: config.uuid, skynet: 'rules'});
// Message - response emits event 'message' to all devices listening
meshblu.message({
devices: ["*"],
topic: 'message',
payload: {ilove: 'food'}
});
// On message
meshblu.on('message', function(message){
console.log('recieved message', message);
});
// On config
meshblu.on('config', function(config){
console.log('recieved config', config);
});
// On data
meshblu.on('data', function(data){
console.log('recieved data', data);
});
// Generate Session Token
meshblu.generateAndStoreToken({uuid: config.uuid}, function(error, response){
console.log('generated token', response);
});
// Reset Token
//meshblu.resetToken({uuid: config.uuid}, function(error, response){
// console.log('reset token', response);
//});
// Generate new public key
meshblu.getPublicKey({uuid: config.uuid}, function(error, response){
console.log('retrieved publicKey', response.publicKey);
});
// Whoami
meshblu.whoami(function(error, device){
console.log('whoami', device);
});
});
LICENSE
(MIT License)
Copyright (c) 2014 Octoblu info@octoblu.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.