ESP8266 connection problem

Check the connection between the Arduino and the ESP8266
If you see the following sequence of commands after the Arduino reset in the Serial Monitor, this means that the ESP8266 initialization is successful and there is a connection between the Arduino and the ESP8266:

AT
AT+RST
ATE0
AT+CWMODE=2
AT+CWDHCP=0,1
AT+CWSAP="RemoteXY","12345678",10,4
AT+CIPMODE=0
AT+CIPMUX=1
AT+CIPSERVER=1,6377

i connected the esp8266 and i can't get the same response as there mentioned..
i only get
AT
AT+RST

it's didn't connect with mobile phone also. what's the problem.

// RemoteXY select connection mode and include library 
#define REMOTEXY_MODE__ESP8266_HARDSERIAL_POINT

#include <RemoteXY.h>

// RemoteXY connection settings 
#define REMOTEXY_SERIAL Serial
#define REMOTEXY_SERIAL_SPEED 9600
#define REMOTEXY_WIFI_SSID "RemoteXY"
#define REMOTEXY_WIFI_PASSWORD "12345678"
#define REMOTEXY_SERVER_PORT 6377


// RemoteXY configurate  
#pragma pack(push, 1)
uint8_t RemoteXY_CONF[] =
  { 255,1,0,0,0,13,0,8,13,0,
  1,0,45,19,12,12,36,31,88,0 };
  
// this structure defines all the variables of your control interface 
struct {

    // input variable
  uint8_t button_1; // =1 if button pressed, else =0 

    // other variable
  uint8_t connect_flag;  // =1 if wire connected, else =0 

} RemoteXY;
#pragma pack(pop)

/////////////////////////////////////////////
//           END RemoteXY include          //
/////////////////////////////////////////////

#define PIN_BUTTON_1 12


void setup() 
{
  RemoteXY_Init (); 
  
  pinMode (PIN_BUTTON_1, OUTPUT);
  
  // TODO you setup code
  
}

void loop() 
{ 
  RemoteXY_Handler ();
  
  digitalWrite(PIN_BUTTON_1, (RemoteXY.button_1==0)?LOW:HIGH);
  
  // TODO you loop code
  // use the RemoteXY structure for data transfer


}

it's didn't connect with mobile phone also. what's the problem.

Most probably the wiring. As you failed to provide a wiring diagram it's on you to check that. Keep in mind that the UNO and the ESP8266 don't have the same voltage so you need level converters to adapt.

ESP-8266 needs it's own 3.3 V power source.
The Arduino Uno's 3.3V pin is not enough.

Level shifting isn't required for ESP-8266 TX to Arduino Uno RX , but Arduino Uno TX to ESP-8266 RX should have level shifting.
Some people have been able to get away with no level shifting, but it is best to do it.

.

ieee488:
ESP-8266 needs it's own 3.3 V power source.
The Arduino Uno's 3.3V pin is not enough.

Level shifting isn't required for ESP-8266 TX to Arduino Uno RX , but Arduino Uno TX to ESP-8266 RX should have level shifting.
Some people have been able to get away with no level shifting, but it is best to do it.

.

can you explain at..
i have connected the esp8266 with 3.3v and the tx and rx is connected directly to the 0 1 pin..

Asad_Ullah019:
can you explain at..
i have connected the esp8266 with 3.3v and the tx and rx is connected directly to the 0 1 pin..

I am not sure what there is to explain.

What are you not understanding?
.