My esp8266-01 sends no signal

I have a esp8266 esp-01, connected with arduino uno, and I have a project using blynk to connect 1 channel relay module, the relay is not serial (Digital), but in my blynk application, after I send the command to turn on, the relay does not change, already tried to turn on a led and also did not turn on.
My program:

#define BLYNK_PRINT Serial

#include “ESP8266_Lib.h”
#include “BlynkSimpleShieldEsp8266.h”

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = “-9J25Bv5mWH9JHgPjPye8X29yw8tpRKP”;

// Your WiFi credentials.
// Set password to “” for open networks.
char ssid[] = “fofoof”;
char pass[] = “fogolivre”;

#include “SoftwareSerial.h”
SoftwareSerial EspSerial(9, 8); // RX, TX

#define ESP8266_BAUD 9600

ESP8266 wifi(&EspSerial);

BLYNK_WRITE(V0){
int pinValue = param.asInt();
//Serial.println(pinValue);
if (pinValue == 1) {
digitalWrite (10,0); // liga o relé 01
} else {
digitalWrite(10, 1); // desliga o relé 01
}
}

void setup(){
Serial.begin(9600);
delay(10);
EspSerial.begin(ESP8266_BAUD);
delay(10);
Blynk.begin(auth, wifi, ssid, pass);
}

void loop(){
Blynk.run();
}

Please edit your post to add triple backticks at the beginning and end of your code so that it displays correctly.
Triple backticks look like this:
```

Pete.

Maybe once you have edited your code we can help… There is some stuff going on that don’t look right…