看看数据表。没有AT+VER?
或AT+VERS
命令。它们是AT+VERR?
和AT+VERS?
。
我用 HC-06 做了一些测试,有些命令需要 CR,有些则不需要。也许这也是你的问题?
我在 Arduino 草图中使用此代码为 HC-06 设置 BT 设备名称:
// Enter AT command mode
if (enterATCommandMode() == true)
{
// Set the name. As we don't have an end-of-line mark, we need to wait until the
// timeout is reached and hope for the best. We also check whether the reply starts
// with "OK", so have at least some indication things worked.
hc06.print("AT+NAME" + userInput);
String reply = hc06.readString();
if (reply.equals(""))
{
Serial.println(F("HC-06 didn't reply in time!"));
}
else
{
if (reply.length() < 2 || !reply.substring(0,2).equalsIgnoreCase(F("OK")))
Serial.println("Unexpected answer ('" + reply + "') to AT+NAME command!");
else
Serial.println(F("Name was set successfully."));
}
}
bool enterATCommandMode()
{
// This buffer receives at most 2 characters as the reply (plus terminating \0)
char atReplyBuffer[] = { '\0', '\0', '\0' };
// Send AT command and receive answer
hc06.print(F("AT"));
int bytesRead = hc06.readBytesUntil('\0', atReplyBuffer, 2);
String reply = String(atReplyBuffer);
// Timed out or answer wasn't OK? Error.
if (bytesRead != 2 || !reply.equalsIgnoreCase(F("OK")))
{
if (reply.equals(""))
Serial.println(F("HC-06 didn't reply in time!"));
else
Serial.println("Unexpected reply ('" + reply + "') to AT command");
return false;
}
// Success
return true;
}