I'm developing a project with PIC dsPIC33 connected via serial port to the HM-10 device. I send to the device AT commands but it seems that some of AT commands are not implemented in the HM-10 firmware. In detail:
AT+RESET - > OK+RESET : it works
AT+RENEW -> OK+RENEW : it works
AT+NAME? -> OK+NAME:HMSoft : it works
AT+VER? -> no answer : it doesn't work
AT+VERS -> no answer : it doesn't work
AT+NAMEaa -> no answer : it doesn't work
did you have similar problem ? Thank you very much for your help and cooperation kind regards
Have a look at the datasheet. There are no
AT+VER?
orAT+VERS
commands. They areAT+VERR?
andAT+VERS?
.I did some tests with a HC-06 and some commands needed a CR, some did not. Maybe that's your problem, too?
I used this code in an Arduino sketch to set up the BT device name for a HC-06: