function connectSuccess() {
console.log("连接蓝牙成功");
}
function connectFailure(error) {
alert(error);
}
var macAddress_or_uuid="0F:03:E0:A0:99:80";
var BluetoothSerial =require("cordova!com.megster.cordova.bluetoothserial");
BluetoothSerial.connect(macAddress_or_uuid, connectSuccess, connectFailure);
};