codecamp

startScan

开始扫描周围的蓝牙设备,并返回扫描到的设备卡号

startScan(callback(ret,err))

callback(ret, err)

回调操作

ret:

  • 类型:JSON对象

  • 内部字段:

  {
    card: ABCDE12345,   //string,蓝牙设备的十位卡号
    powerLow: false,    //bool型,true表示当前设备电量低
  }

err:

  • 类型:JSON对象

  • 内部字段:

  {
    error: "ble scan is already started"     //string, error message
  }

示例代码

bleScanner.startScan(function(ret, err) {
    if (ret != "") {
        addResult(JSON.stringify(ret));
    }
    if (err != "") {
        addResult(JSON.stringify(err));
    }
});

stopScan

停止扫描

stopScan()

示例代码

  bleScanner.stopScan();
sendCommand
setIgnored
温馨提示
下载编程狮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; }