continuing

This commit is contained in:
Martin Donnelly 2016-07-06 14:15:57 +01:00
parent 00af6eaf5b
commit df28729afe

View File

@ -24,6 +24,9 @@ var bluetest = module.exports = function(options) {
core.connectGatt = function() {
logger.info('trying to connect using gatttool');
var gatt = spawn('gatttool -I');
gatt.on('error', function(err) {
logger.error(err);
});
gatt.on('exit', function(code) {
logger.debug('gatt exit code', code);