codecamp

connect

连接指定外围设备

connect({params}, callback(ret, err))

params

address:

  • 类型:字符串
  • 描述:要连接的外围设备的 MAC地址。

callback(ret, err)

ret:

  • 类型:JSON对象
  • 内部字段:

{
    status: true ,  //布尔型;true||false 连接是否成功
    device: ''// 字符串类型;连接成功的蓝牙设备,当状态为true时候,会有该字段,该字段为json格式的字符串,包含name,address,bondState(12:已经绑定;11:正在绑定;10:未绑定)三个属性,
}

err:

  • 类型:JSON对象
  • 内部字段:

{
    msg: 'device not exist'     //字符串类型;
                                // device not exist : 设备不存在
                                // 其他:系统级别的错误信息


}

示例代码

var spp = api.require('spputil');
spp.connect({
    address: address
}, function(ret, err) {
    if (ret.status) {
         console.log("连接蓝牙设备【" + address + "】成功");
         var device = JSON.parse(ret.device)
    } else {
        console.log("连接蓝牙设备【" + address + "】失败:" + err.msg);
    }
});

可用性

Android系统

可提供的1.0.0及更高版本

stopScan
disconnect
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

端API

设备访问

ipAddress

wifiSSID

smartConfigCheyw

无标题文章

前端框架

云API

开发工具

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }