#define WIFI_SSID "wifi名称" #define WIFI_PASSWORD "wifi密码" #define MQTT_IP "pushdeer公网IP" #define MQTT_USER "MQTT用户名" #define MQTT_PASSWORD "MQTT密码" #define MQTT_TOPIC "PushDeer pushkey" // 这里填PushDeer的Key #define MQTT_PORT 1883 // ====== 以下不用修改 =============== #define MQTT_CLIENT_NAME "DeerEsp" #define DOWNLOADED_IMG "/download.jpg" #define BEEP_PIN D8 #include EspMQTTClient mclient( WIFI_SSID, WIFI_PASSWORD, MQTT_IP, MQTT_USER, MQTT_PASSWORD, MQTT_CLIENT_NAME, MQTT_PORT ); #include "cubic_12.h" #include "SPI.h" #include TFT_eSPI tft = TFT_eSPI(); #ifdef ESP8266 #include #else #include "SPIFFS.h" // Required for ESP32 only #include #endif #include void setup() { Serial.begin(115200); mclient.enableDebuggingMessages(); tft.begin(); tft.fillScreen(TFT_BLACK); tft.setTextColor(0xFFFF,0x0000);tft.setCursor(0, 0, 1);tft.setTextSize(2);tft.println("Init ..."); Serial.println("tft init"); if (!SPIFFS.begin()) { Serial.println("SPIFFS initialisation failed!"); while (1) yield(); // Stay here twiddling thumbs waiting } Serial.println("SPIFFS init"); TJpgDec.setJpgScale(2); TJpgDec.setSwapBytes(true); TJpgDec.setCallback(tft_output); Serial.println("TJpgDec init"); } void onConnectionEstablished() { Serial.println("connected"); tft.setTextColor(0xFFFF,0x0000);tft.setCursor(0, 0, 1);tft.println("Waiting for messages ..."); mclient.subscribe(String(MQTT_TOPIC)+"_text", [] (const String &payload) { Serial.println(payload); if (SPIFFS.exists(DOWNLOADED_IMG) == true) TJpgDec.drawFsJpg(0, 0, DOWNLOADED_IMG); else tft.fillScreen( TFT_BLACK ); if(payload.indexOf("♪") >= 0) tone(BEEP_PIN, 1000, 100); tft.loadFont(cubic_11); if( payload.length() > 80 ) tft.setTextSize(1); else tft.setTextSize(2); char *found; short line = 0; int base = 5; int now_base = 0; char * payloads = const_cast ( payload.c_str() ); while( (found = strsep( &payloads , "\n" ) ) != NULL ) { now_base = base + line*14; tft.setTextColor(0x0000);tft.setCursor(base+1, now_base+1);tft.println(found); tft.setTextColor(0x0000);tft.setCursor(base+2, now_base+2);tft.println(found); tft.setTextColor(0xFFFF);tft.setCursor(base, now_base);tft.println(found); line++; } tft.unloadFont(); }); mclient.subscribe(String(MQTT_TOPIC)+"_bg_url", [] (const String &payload) { Serial.println(payload); bool ret = file_put_contents(payload, DOWNLOADED_IMG); if (SPIFFS.exists(DOWNLOADED_IMG) == true) { TJpgDec.drawFsJpg(0, 0, DOWNLOADED_IMG); } }); } void loop() { mclient.loop(); } bool file_put_contents(String url, String filename) { Serial.println("Downloading " + filename + " from " + url); // Check WiFi connection if (WiFi.status() == WL_CONNECTED) { Serial.print("[HTTP] begin...\n"); WiFiClient client; HTTPClient http; http.begin(client, url); Serial.print("[HTTP] GET...\n"); int httpCode = http.GET(); if (httpCode > 0) { fs::File f = SPIFFS.open(filename, "w+"); if (!f) { Serial.println("file open failed"); return 0; } Serial.printf("[HTTP] GET... code: %d\n", httpCode); if (httpCode == HTTP_CODE_OK) { int total = http.getSize(); int len = total; uint8_t buff[128] = { 0 }; WiFiClient * stream = http.getStreamPtr(); while (http.connected() && (len > 0 || len == -1)) { size_t size = stream->available(); if (size) { int c = stream->readBytes(buff, ((size > sizeof(buff)) ? sizeof(buff) : size)); f.write(buff, c); if (len > 0) { len -= c; } } yield(); } Serial.println(); Serial.print("[HTTP] connection closed or file end.\n"); } f.close(); } else { Serial.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str()); Serial.print(httpCode); } http.end(); } return 1; } bool tft_output(int16_t x, int16_t y, uint16_t w, uint16_t h, uint16_t* bitmap) { if ( y >= tft.height() ) return 0; tft.pushImage(x, y, w, h, bitmap); return 1; }