ESP32 with Blynk

ผมทำโปรเจคอ่านค่า EC pH ในน้ำแล้วส่งไปใน blynk และบันทึกใน Google sheets แต่พอเชื่อมต่อผ่านไปสักพักมันชอบขึ้นว่า Blynk not connect แล้วไม่กลับไปต่อ server ใหม่ มีวิธีแก้ไหมครับ

1.ใช้ server อะไรครับ
2.ขึ้น blynk not connect ที่ไหน หน้าแอพมือถือ หรือ ในอุปกรณ์
3.ใช้โค้ตแบบไหนเชื่อมต่อ

1.เป็น server ของ blynk.honey.co.th
2.ขึ้นที่ monitor arduino หน้าแอพก็ไม่เชื่อมต่อครับ

#define BLYNK_PRINT Serial


#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).

// Your WiFi credentials.
// Set password to "" for open networks.
const char* ssid     = "*****";
const char* pass = "******";
char auth[] = "*******";
void setup()
{
  // Debug console
  Serial.begin(115200);
  Blynk.begin(auth, ssid, pass ,"blynk.honey.co.th" ,8080);
  Serial.println("connected");
}

void loop()
{
  Blynk.run();
  if(!Blynk.connected())
  {
    Serial.println("Blynk not connect");
    //Blynk.begin(auth, ssid, password ,"blynk.honey.co.th" ,8080);
  }
  if (WiFi.status() != WL_CONNECTED)
  {
    Serial.println("Wifi not connected");
    //Blynk.begin(auth, ssid, password ,"blynk.honey.co.th" ,8080);
  }
}

เบื้องต้นลอง clone App ไปใช้ของ blynk หลัก ใช้โค้ต้ดียวกันแล้วดูว่าขึ้นเหมือนกันไหม ถ้าไม่ได้เกิดจาก esp32 รีเซต watdoc ต่อไม่ได้เหมือนกันแสดงว่าเป็นที่โค้ต ถ้าได้แสดงเป็นที่ server ครับ