ESP 8266 Sorun Proje

Merhaba, proje yaparken bu kodu Aruduino Mega yükledim, fakat isteidğim gibi ESP 8266 çalışmıyor. Kod:

// you can enable debug logging to Serial at 115200
//#define REMOTEXY__DEBUGLOG

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

#include <SoftwareSerial.h>

// RemoteXY connection settings
#define REMOTEXY_SERIAL_RX 8
#define REMOTEXY_SERIAL_TX 9
#define REMOTEXY_SERIAL_SPEED 9600
#define REMOTEXY_WIFI_SSID “Git_Wifi”
#define REMOTEXY_WIFI_PASSWORD “123456789”
#define REMOTEXY_SERVER_PORT 6377

#include <RemoteXY.h>

// RemoteXY GUI configuration
#pragma pack(push, 1)
uint8_t RemoteXY_CONF = // 36 bytes
{ 255,1,0,0,0,29,0,17,0,0,0,21,1,106,200,1,1,1,0,2,
29,80,44,22,0,36,8,31,31,79,78,0,79,70,70,0 };

// this structure defines all the variables and events of your control interface
struct {

// input variables

uint8_t switch_01; // =1 if switch ON and =0 if OFF

// other variable

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

} RemoteXY;
#pragma pack(pop)

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

#define PIN_SWITCH_01 3

void setup()
{
RemoteXY_Init ();

pinMode (PIN_SWITCH_01, OUTPUT);

// TODO you setup code

}

void loop()
{
RemoteXY_Handler ();

digitalWrite(PIN_SWITCH_01, (RemoteXY.switch_01==0)?LOW:HIGH);

// TODO you loop code
// use the RemoteXY structure for data transfer
// do not call delay(), use instead RemoteXY_delay()

}

Burdaki kod yüklediktan sontra, wifi olarak sadace AL-THINKER_A393D6 alıyorum ve internet yok. Remoxty uygulama kullanaraki sadace bir button üzerinden, yani cep telefon kullanarak ordaki button tıkladığımda led yansın gibi.