Skip to content

Instantly share code, notes, and snippets.

@gabhi
Forked from drnugent/pubnub-tessel.js
Last active August 29, 2015 14:19
Show Gist options
  • Save gabhi/d7a7ebd5977a43516624 to your computer and use it in GitHub Desktop.
Save gabhi/d7a7ebd5977a43516624 to your computer and use it in GitHub Desktop.
var pubnub = require("pubnub").init({ publish_key: "demo", subscribe_key: "demo" });
var tessel = require("tessel");
pubnub.subscribe({ channel: "tessel-light", message: function(m) {
tessel.led[1].toggle();
}});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment