我正在尝试学习如何使用此库通过蓝牙发送命令: 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")重写为字节格式,以便通过蓝牙发送。
或者如果某人有类似项目,请发送给我。我想学习它。
我对这些问题提出了越来越多的理论,但对我来说并不算什么。