连接蓝牙打印机返回10012,提示信息大意是“操作超时“,请问这个是什么问题?怎么解决?
需要低功耗蓝牙的打印机 看年这个 :https://developers.weixin.qq.com/blogdetail?action=get_post_info&docid=7e85fa4514a56b7928646f96dd4bcabe&highline=%E8%93%9D%E7%89%99%E6%89%93%E5%8D%B0%E6%9C%BA
麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题
你好,请问用蓝牙可能做到控制空调开关吗?
双模打印机么?小程序这里只支持Ble接口喔,尝试用Ble接口去连接打印机肯定是不行的。
连接超时,指调用了系统的提供的接口:
BluetoothDevice.connectGatt(Context context, boolean autoConnect,
BluetoothGattCallback callback)
20s内并没有收到系统的连接成功回调,可以a.在createBleConnection接口上加入timeout(单位:ms)参数控制这个超时时间; b.尝试重连。
请问有结果了吗?