codecamp

NotifyBT

打开或者关闭的BLE外设的notify功能

NotifyBT(param)

param

service:

  • 类型:字符串
  • 描述:BLE外设的service(服务)的UUID,不能为空

charUUID:

  • 类型:字符串
  • 描述:BLE外设的characteristic(特征值)的UUID,不能为空

enable:

  • 类型:boolean类型
  • 描述:打开或者关闭notify功能,不能为空

way:

  • 类型:字符串

  • 默认值:无

  • 描述:用何种方式打开notify功能,2种方式:indicate/notify,不能为空

示例代码

var obj = api.require('btmodule');
var param={service:"0000fff0-0000-1000-8000-00805f9b34fb",charUUID:"0000fff4-0000-1000-8000-00805f9b34fb",enable:true,way:"indicate"};
obj.NotifyBT(param);

补充说明

调用此接口前,需设定好需要notify的BLE外设的characteristic(特征值)的UUID 和其所属的service(服务)的UUID,本示例代码是设成TI-CC2540芯片的BLE协议栈例程 里面的simpleGATTprofile的service的UUID和char的UUID进行打开notify功能; 返回的数据会在startRev函数中产生回调

可用性

Android系统,需设备支持蓝牙4.0且安卓版本在4.3以上

可提供的1.0.0及更高版本

ReadBT
ConnectBT
温馨提示
下载编程狮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; }