I'm new to Arduino and I've got a problem. I'm trying to connect a HC-05 Bluetooth module to arduino Pro Micro using TX\RX pins but it doesn't respond to my commands which I wrote in the serial monitor window. I tried arduino uno , mega and nano. Arduino uno and mega are working well but arduino nano and pro micro don't respond to commands.
I followed this tutorial.
I installed the drivers and did some simple projects like "LED Fading" using all of the arduino boards that I mentioned above. (Uno , Mega , Nano , Pro Micro)
when I use arduino uno or mega and write "AT COMMANDS" in the serial monitor window , the HC-05 module responds well. but when I use arduino nano or pro micro the module doesn't respond to commands.
On all your boards (with exception of the Pro Micro) RX and TX are 'in parallel' with the USB interface. On the Pro Micro, that's not the case. So the instructions about configuring with AT commands from serial monitor will not work.
You will need to write a simple sketch to read the serial port and pass every character to the Serial1 port and vice versa. You probably also should not swap the TX and RX; so TX to RX and RX to TX.