我正在为 Windows 8 下的 Google Chrome 编写扩展程序,以从连接到 Arduino Nano 电路的 HC-05 蓝牙模块读取数据。
连接正常后,我尝试使用 chrome.bluetooth.read 函数读取数据,但程序在该点堆叠。
有人可以给我一些关于使用该功能的建议吗?
chrome.bluetooth.read(
{socket: socket},
function(myBuffer)
{
myView = new Uint8Array(myBuffer);
log("mi buffer = " + JSON.stringify(myView));
}
);
谢谢,
JC