i need you help…
i’m Thai
I’m sorry, I’m not good at English
I have a problem with my code, as in the example
#define BLYNK_PRINT Serial
#define BLYNK_DEBUG // Optional, this enables more detailed prints
#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>
#include <SimpleTimer.h>
#include <SimpleDHT.h>
char auth[] = "Ul3cq98pci8XCXbMoVrwQzVdHYPWN9bA";
char ssid[] = "Zodiannm";
char pass[] = "anm6024418050";
char server[] = "blynk-cloud.com";
int port = 80;
int DHTSENSOR = 15; //GPIO15 (ADC2_CH3)
SimpleDHT22 dht22(15);
BlynkTimer timer;
void setup() {
Serial.begin(115200);
// Blynk.begin(auth, ssid, pass,"blynk-cloud.com", 80);
WiFi.begin(ssid, pass); //เชื่อมต่อ WiFi
Blynk.config(auth, "blynk-cloud.com", 80); //-----------2
Blynk.connect();
timer.setInterval(5000L, sendSensor);
}
void loop() {
Blynk.run();
timer.run();
}
void sendSensor() {
byte temperature = 0;
byte humidity = 0;
dht22.read(DHTSENSOR, &temperature, &humidity, NULL);
while (temperature == 0) {
dht22.read(DHTSENSOR, &temperature, &humidity, NULL);
Serial.println("DHT22 get failed");
delay(1500);
}
Blynk.virtualWrite(V13, humidity);
Blynk.virtualWrite(V12, temperature);
Serial.print("Humidity: ");
Serial.print(humidity);
Serial.print("% | ");
Serial.print("Temperature: ");
Serial.print(temperature);
Serial.println("C");
}
form code
when i use this code
WiFi.begin(ssid, pass); //เชื่อมต่อ WiFi
Blynk.config(auth, "blynk-cloud.com", 80); //-----------2
Blynk.connect();
I will get results

Can you tell me why?
thank you for help 
