Softserial library with Arduino MEGA2560

Hello Arduino
I'm really a biginner with arduino
I try to make bluetooth connection with HC-06 module
but with arduino Uno it works well, but arduino MEGA is not working as i thought

I used port 14, 15 to TX, RX (because it says this is communication port)
and there are no posts about HC-06 with Arduino MEGA 2560

please help me :frowning:

There is no need to use SoftwareSerial on a Mega as it has 3 spare Hardware Serial ports. The pins 14 and 15 are Tx and Rx for Serial3. Just use Serial3.print() or Serial3.read() etc.

...R