修改client name冲突的问题

This commit is contained in:
Easy 2022-02-18 23:19:34 +08:00
parent 6db248e2b8
commit 9f669714b2

View File

@ -5,10 +5,10 @@
#define MQTT_PASSWORD "MQTT密码"
#define MQTT_TOPIC "PushDeer pushkey" // 这里填PushDeer的Key
#define MQTT_PORT 1883
#define MQTT_CLIENT_NAME "DeerEsp" // 多个同名设备连接同一台服务器会导致其他下线,所以起一个唯一的名字吧
// ====== 以下不用修改 ===============
#define MQTT_CLIENT_NAME "DeerEsp"
#define DOWNLOADED_IMG "/download.jpg"
@ -46,6 +46,7 @@ void setup() {
Serial.begin(115200);
mclient.enableDebuggingMessages();
tft.begin();
tft.fillScreen(TFT_BLACK);
tft.setTextColor(0xFFFF,0x0000);tft.setCursor(0, 0, 1);tft.setTextSize(TXT_SCALE);tft.println("Init ...");