I would like to connect Arduino UNO and ESP 01 module. I use Arduino IDE and I tried to test comunication via serial monitor, I get "ready" message from ESP 01, but I am not able to issue AT command from serial monitor. It only inserts random characters to console. It seems that no new line character is issued, because if I try to insert mode commands, they are inserted next to previous characters. I use "Both NL & CR" and 115200 baud settings in Arduino IDE. Tried also 9600 baud, but then text is unreadable.
I used folowing pins on my ESP-01:
Vcc -> 3,3V
Gnd -> Gnd
Rx -> Tx(pin 0) of my Arduino, used voltage divider to make it 3,3V.
Tx -> Rx(pin 1) of Arduino
CH_PD -> 3,3V
Please see screenshot of Serial monitor:
EDIT: PROBLEM RESOLVED:
My arduino is connected to PC via usb, so I changed pins for communication with ESP by SoftwareSerial to pins 10 and 11. Now it works. Thank you.