Added new 'cylon bluetooth scan' command.
This commit is contained in:
parent
80a3e915b5
commit
3d4ccfb173
14
bin/cylon
14
bin/cylon
|
@ -22,8 +22,8 @@ Program
|
|||
});
|
||||
|
||||
Program
|
||||
.command("bluetooth <subcmd> <address> [option]")
|
||||
.description("Connect bluetooth device to PC (pairs) or establishes serial to bluetooth connection")
|
||||
.command("bluetooth <subcmd> [address] [option]")
|
||||
.description("Scan, pair, unpair bluetooth devices to/from the PC, establishes serial to bluetooth connection. Try 'cylon bluetooth help'")
|
||||
.action(function(subcmd, address, option){
|
||||
switch(subcmd){
|
||||
case 'pair':
|
||||
|
@ -38,11 +38,15 @@ Program
|
|||
option = (option === null || option === undefined) ? '/dev/rfcomm0' : option;
|
||||
CliCommands.connectToSerial(option, address);
|
||||
break;
|
||||
case 'scan':
|
||||
CliCommands.bluetooth.scan();
|
||||
break;
|
||||
default:
|
||||
console.log("cylon bluetooth argument not recognized, try:\n");
|
||||
console.log("1.- cylon bluetooth pair <address> [hciX]");
|
||||
console.log("2.- cylon bluetooth unpair <address> [hciX]");
|
||||
console.log("3.- cylon bluetooth connect <address> [dev]\n");
|
||||
console.log("1.- cylon bluetooth scan");
|
||||
console.log("2.- cylon bluetooth pair <address> [hciX]");
|
||||
console.log("3.- cylon bluetooth unpair <address> [hciX]");
|
||||
console.log("4.- cylon bluetooth connect <address> [dev]\n");
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
(function() {
|
||||
var bluetooth, os;
|
||||
var bluetooth, os, scan;
|
||||
|
||||
require("./process");
|
||||
|
||||
scan = require("./scan");
|
||||
|
||||
os = require('os');
|
||||
|
||||
bluetooth = {
|
||||
|
@ -31,6 +33,9 @@
|
|||
default:
|
||||
return console.log("OS not yet supported.");
|
||||
}
|
||||
},
|
||||
scan: function() {
|
||||
return scan('bluetooth');
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -12,7 +12,8 @@
|
|||
connectToSerial: connectToSerial,
|
||||
bluetooth: {
|
||||
pair: bluetooth.pair,
|
||||
unpair: bluetooth.unpair
|
||||
unpair: bluetooth.unpair,
|
||||
scan: bluetooth.scan
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
require "./process"
|
||||
scan = require "./scan"
|
||||
os = require('os')
|
||||
|
||||
bluetooth =
|
||||
|
@ -30,4 +31,7 @@ bluetooth =
|
|||
else
|
||||
console.log "OS not yet supported."
|
||||
|
||||
scan: () ->
|
||||
scan('bluetooth')
|
||||
|
||||
module.exports = bluetooth
|
||||
|
|
|
@ -8,5 +8,6 @@ cliCommands =
|
|||
bluetooth:
|
||||
pair: bluetooth.pair
|
||||
unpair: bluetooth.unpair
|
||||
scan: bluetooth.scan
|
||||
|
||||
module.exports = cliCommands
|
||||
|
|
Loading…
Reference in New Issue