gpt4 book ai didi

javascript - 如何通过蓝牙发送Android命令?

转载 作者:太空宇宙 更新时间:2023-11-04 12:58:52 24 4
gpt4 key购买 nike

我正在尝试学习如何使用此库通过蓝牙发送命令: https://github.com/akexorcist/Android-BluetoothSPPLibrary

但是当我尝试以这种形式发送这些命令时:

(Send: "$$$"                           Receive: "CMD"    
Send: "S&,0404\r" Receive: "AOK"
Send: "S&,0400\r" Receive: "AOK"
Send: "---\r" Receive: "END")

我需要将此命令写入代码,

但我不知道如何。

我想通过蓝牙连接到 Android 设备并发送文本。

    void teplotahore() {
STup.setOnClickListener(
new View.OnClickListener() {
@Override
public void onClick(View view) {
teplotad++;
prevodst(teplotac, teplotad);
bt.send("Text", true);
}
}
);
}



public void send(String data, boolean CRLF) {
if(mChatService.getState() == BluetoothState.STATE_CONNECTED) {
if(CRLF)
data += "\r\n";
mChatService. write(data.getBytes());
}
}

请告诉我如何(发送:“S&,0404\r”接收:“AOK”)重写为字节形式以通过蓝牙发送。

或者如果有人有类似的项目,请发送给我。我想学习它。

我对这些问题有了越来越多的理论,但这不适合我。

最佳答案

Bluetoothchat是google提供的示例项目。您可以检查此项以了解使用蓝牙进行的数据传输。

关于javascript - 如何通过蓝牙发送Android命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35113726/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com