Configurar módulo HC 05 para enlazar con Crossfire Bluetooth - demianbadin/Ghettostation GitHub Wiki
Aporte de: Fer Masetro
Tutorial para los usuarios Crossfire, como modificar el modulo HC-05, para poder enlazar con el TBS.
I had a little success with HC-05 (and firmware 2.*) to crossfire connection : I found usefull link here : http://arduino-info.wikispaces.com/B...Modules-How-To and especially this one for AT command explanation http://cdn.instructables.com/ORIG/FQ...VZHXA9PUVQ.pdf AT+RMAAD Clear any paired devices AT+ROLE=1 Set mode to Master AT+RESET After changing role, reset is required AT+CMODE=0 Allow connection to any address AT+INQM=0,5,5 Inquire mode - Standard, stop after 5 devices found or after 5 seconds AT+PSWD="1234" Set PIN. AT+INIT Start Serial Port Profile (SPP) ( If Error(17) returned - ignore as profile already loaded) AT+INQ Start searching for devices A list of devices found will be displayed, one of which is the slave module. The format of the output is +INQ:address,type,signal The address of the module is what we need and is in the format 4:3E:9A440B NOTE: We need to replace the colons with commas when we use the address with the following commands. If you get more than one device listed and don't know which one is the slave module Crossfire, you can query the module for it's name using: AT+RNAME? e.g. (don't forget to change the colons to commas) AT+RNAME? 4,3E,9A440B CROSSFIRE XXXX- Once we are happy we have the correct slave address, we need to pair with it, so carry on with the next set of commands: AT+PAIR=4,3E,9A440B,10 , The timeout is in seconds and if you need to type in the pin on the slave device you need to give enough time to do this. AT+BIND=4,3E,9A440B Set bind address to the slave address AT+LINK=4,3E,9A440B Connect to slave.