使用系统蓝牙设置设备设置项
<h3>接口描述</h3>
<ul>
<li>使用系统蓝牙设置设备设置项(03数据)</li>
</ul>
<p>> <em> 设备的控制及更改设备设置项接口
> </em> 此命令为通过透传命令,写入03寄存器的值,从而达到更改设备设备属性的值</p>
<h3>模块名称</h3>
<p><code>RNBluetooth</code></p>
<h3>方法详情</h3>
<pre><code>/**
* 读取寄存器信息
* @param {JSON string} param - 寄存器的位置,及所要设置的值,具体参数设置 按 - `附件-myGro寄存器协议接口字段表`
* @callback {JSON string} successCallBack- 设置成功后的回调
* @callback { error } errorCallBack-requestErrorCallBack - 读取失败的回调
*/
function set(JSON string) =&gt; {
}
</code></pre>
<h3>使用示例</h3>
<pre><code>try {
// api 使用 蓝牙关闭USB输出开关
const result = RNBluetooth.set(
'usbOutEn',
0)
);
console.log('====== response ====== \n');
console.log(JSON.stringify(response, null, 4));
} catch (e) {
console.log('====== error ====== \n');
console.error(e);
}</code></pre>
<pre><code>结果</code></pre>
<h5>备注</h5>
<ul>
<li>更多信息参考<code>附件-myGro寄存器协议接口字段表.json</code>及<code>便携电源通信协议20231020.xlsx</code></li>
</ul>