I have not been able to test mine yet, because my PL8 is back having warranty work done on it.
I purchased a DTD brand HC-05. The difference between the HC-05 and HC-06 is the HC-05 can operate in master or slave mode, whereas the HC-06 only supports slave mode. Slave mode is what we need.
Either one needs to have some parameters changed. For my HC-05, I wired the HC-05 up to an Arduino nano on a breadboard. Doing so should really use a voltage divider to reduce the nominal 5 volts to 3 volts going to the HC-05 RX pin.
Changing the parameters on the HC-05/6 requires configuring it for command mode. Once it is in command mode, you can use AT commands to alter the various parameters.
Putting the DSD brand HC-05/6 into command mode requires holding down a tiny button while power is first supplied. The led will start flashing on and off at about 0.2 Hz to indicate it is in command mode. To take it out of command mode, simply cycle the power without holding down that little button.
There are many programs available online that allow a PC to communicate with an HC-05/6. I modified one and used it to send the appropriate commands to my HC-05. I believe they are the same for the HC-06, but have neither checked the datasheet nor tested myself.
To make sure you are corrected, simply send "AT" (without the quotes).
To find the baud rate, stop bit, and parity, send "AT+UART?" (without the quotes).
To change the baud rate to 1900 with 1 stop bit and no parity, send "AT+UART=19200,0,0" (without the quotes).
If you want to change the PIN, send the "AT+PSWD=987654" (without the quotes), where 987654 is an example of a 6 digit PIN.
I purchased the DSD HC-05 here:
https://www.amazon.com/gp/product/B01G9 ... UTF8&psc=1I purchased the diodes here:
https://www.amazon.com/gp/product/B07BT ... UTF8&psc=1 (why buy one when you can buy an assortment of 200:)?)
I purchased an assortment of Arduino nanos here:
https://www.amazon.com/gp/product/B0775 ... UTF8&psc=1I bought a kit with breadboard, power supply, breadboard wires, and lots of components here:
https://www.amazon.com/gp/product/B01ER ... UTF8&psc=1I bought a collection of wires with servo connectors here:
https://www.amazon.com/gp/product/B01JK ... UTF8&psc=1You don't need nearly all that stuff to do this limited project, but having that laying around has been immensely useful for a variety projects I am involved with right now.
I have attached the Arduino project I used to communicate with the HC-05.
Steve