Skip to content

Instantly share code, notes, and snippets.

@Krimsit
Last active November 16, 2017 18:33
Show Gist options
  • Save Krimsit/98118646b1f23384c9bb238aaf53c0e6 to your computer and use it in GitHub Desktop.
Save Krimsit/98118646b1f23384c9bb238aaf53c0e6 to your computer and use it in GitHub Desktop.
var led = require("@amperka/led").connect(P5);
var ir = require("@amperka/ir-receiver").connect(P2);
ir.on("receive", function(code, repeat){
console.log(code.toString(16));
if(code.toString(16) == "3fcc33f"){
led.toggle();
}
else{
console.log("Error, fubction is not found!");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment