"use strict"; var Cylon = require("cylon"); Cylon.robot({ connections: { m2x: { adaptor: "m2x", masterKey: "<masterKey>" } }, devices: { m2x: { driver: "m2x" } }, work: function(my) { my.m2x.stream("<deviceId>", "temp", function(err, data) { console.log("Err: ", err); console.log("Stream: ", data); }); } }).start();