B4R Question is it possible to connect arduino to another bt device

tufanv

Expert
Licensed User
Longtime User
Hello,

Normally we use hc-05 with our arduino to accept bt commands sent by our phone to make arduino do things. Is the opposite possible: Can we use hc-05 to connect to another device that has bluetooth : for example : an electric scooter and use their bt protocol to control them ?

Thanks
 

Cableguy

Expert
Licensed User
Longtime User
HC05 is a Slave BT device, meaning it can only accept connection requests.
This means that with HC05, the Arduino is NOT the one initiating the connection.
You should use the HC06 module, which can be both Master and Slave, thus having the ability to search and request connection to other BL devices.
 
Upvote 0

tufanv

Expert
Licensed User
Longtime User
HC05 is a Slave BT device, meaning it can only accept connection requests.
This means that with HC05, the Arduino is NOT the one initiating the connection.
You should use the HC06 module, which can be both Master and Slave, thus having the ability to search and request connection to other BL devices.
Very informative, thanks
 
Upvote 0

Cableguy

Expert
Licensed User
Longtime User
HC05 is a Slave BT device, meaning it can only accept connection requests.
This means that with HC05, the Arduino is NOT the one initiating the connection.
You should use the HC06 module, which can be both Master and Slave, thus having the ability to search and request connection to other BL devices.

[IMPORTANT EDIT]

Apparently I have inverted the master/slave module names...
The HC05 IS MASTER/SLAVE CAPABLE
The HC06 IS ONLY SLAVE CAPABLE
 
Upvote 0
Top