NodeJS application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Cylon = require('cylon'); | |
var Barcli = require("barcli"); | |
var attentionGraph = new Barcli({ | |
label: "attention Graph", | |
range: [0, 100], | |
}); | |
var apiKey = '<Your API Key>'; | |
var IFTTTMaker = require('iftttmaker')(apiKey); | |
var trigger_on = 'MindControlTrigger_On'; | |
var trigger_off = 'MindControlTrigger_Off'; | |
Cylon.robot({ | |
connections: { | |
neurosky: { adaptor: 'neurosky', port: '/dev/cu.MindWaveMobile-DevA' } | |
}, | |
devices: { | |
headset: { driver: 'neurosky' } | |
}, | |
work: function(my) { | |
my.headset.on('attention', function(data) { | |
//Logger.info("attention:" + data); | |
if (data < 100) | |
{ | |
attentionGraph.update(data); | |
if (data > 50) | |
{ | |
IFTTTMaker.send(trigger_on, function (error) { | |
if (error) { | |
console.log('The request could not be sent:', error); | |
} else { | |
console.log('Request was sent'); | |
} | |
}); | |
} else | |
{ | |
IFTTTMaker.send(trigger_off, function (error) { | |
if (error) { | |
console.log('The request could not be sent:', error); | |
} else { | |
console.log('Request was sent'); | |
} | |
}); | |
} | |
} | |
}); | |
} | |
}).start(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment