私はHM-10コピーCC4A-1モジュールで作業しています。苦労の末Arduino Uno R3に接続しました。Arduino Serial Monitor を使用していくつかの AT コマンドを実行しましたが、AT+RENEW コマンドを実行した後、突然動作しなくなりました。AT+BAUDもやってみました command but it returned error before executing AT+RENEW.
#include <SoftwareSerial.h>
SoftwareSerial BTSerial(2, 3); //RX|TX
void setup(){
Serial.begin(9600);
BTSerial.begin(9600); // default baud rate
while(!Serial); //if it is an Arduino Micro
Serial.println("AT commands: ");
}
void loop(){
//read from the HM-10 and print in the Serial
if(BTSerial.available())
Serial.write(BTSerial.read());
//read from the Serial and print to the HM-10
if(Serial.available())
BTSerial.write(Serial.read());
}