/** * @file TinyGsmClientESP8266.h * @author Volodymyr Shymanskyy * @license LGPL-3.0 * @copyright Copyright (c) 2016 Volodymyr Shymanskyy * @date Nov 2016 */ #ifndef SRC_TINYGSMCLIENTESP8266_H_ #define SRC_TINYGSMCLIENTESP8266_H_ // #pragma message("TinyGSM: TinyGsmClientESP8266") // #define TINY_GSM_DEBUG Serial #define TINY_GSM_MUX_COUNT 5 #include "TinyGsmCommon.h" #define GSM_NL "\r\n" static const char GSM_OK[] TINY_GSM_PROGMEM = "OK" GSM_NL; static const char GSM_ERROR[] TINY_GSM_PROGMEM = "ERROR" GSM_NL; static const char GSM_CME_ERROR[] TINY_GSM_PROGMEM = GSM_NL "+CME ERROR:"; static unsigned TINY_GSM_TCP_KEEP_ALIVE = 120; // status of ESP8266 station interface // 2 : ESP8266 station connected to an AP and has obtained IP // 3 : ESP8266 station created a TCP or UDP transmission // 4 : the TCP or UDP transmission of ESP8266 station disconnected // 5 : ESP8266 station did NOT connect to an AP enum RegStatus { REG_OK_IP = 2, REG_OK_TCP = 3, REG_OK_NO_TCP = 4, REG_DENIED = 5, REG_UNKNOWN = 6, }; class TinyGsmESP8266 : public TinyGsmModem { friend class TinyGsmModem; /* * Inner Client */ public: class GsmClientESP8266 : public GsmClient { friend class TinyGsmESP8266; public: GsmClientESP8266() {} explicit GsmClientESP8266(TinyGsmESP8266& modem, uint8_t mux = 1) { init(&modem, mux); } bool init(TinyGsmESP8266* modem, uint8_t mux = 1) { this->at = modem; this->mux = mux; sock_connected = false; at->sockets[mux] = this; return true; } public: int connect(const char* host, uint16_t port, int timeout_s) { stop(); TINY_GSM_YIELD(); rx.clear(); sock_connected = at->modemConnect(host, port, mux, false, timeout_s); return sock_connected; } int connect(IPAddress ip, uint16_t port, int timeout_s) { return connect(TinyGsmStringFromIp(ip).c_str(), port, timeout_s); } int connect(const char* host, uint16_t port) override { return connect(host, port, 75); } int connect(IPAddress ip, uint16_t port) override { return connect(ip, port, 75); } void stop(uint32_t maxWaitMs) { TINY_GSM_YIELD(); at->sendAT(GF("+CIPCLOSE="), mux); sock_connected = false; at->waitResponse(maxWaitMs); rx.clear(); } void stop() override { stop(5000L); } /* * Extended API */ String remoteIP() TINY_GSM_ATTR_NOT_IMPLEMENTED; }; /* * Inner Secure Client */ public: class GsmClientSecureESP8266 : public GsmClientESP8266 { public: GsmClientSecureESP8266() {} explicit GsmClientSecureESP8266(TinyGsmESP8266& modem, uint8_t mux = 1) : GsmClientESP8266(modem, mux) {} public: int connect(const char* host, uint16_t port, int timeout_s) { stop(); TINY_GSM_YIELD(); rx.clear(); sock_connected = at->modemConnect(host, port, mux, true, timeout_s); return sock_connected; } }; /* * Constructor */ public: explicit TinyGsmESP8266(Stream& stream) : stream(stream) { memset(sockets, 0, sizeof(sockets)); } /* * Basic functions */ protected: bool initImpl(const char* pin = NULL) { DBG(GF("### TinyGSM Version:"), TINYGSM_VERSION); if (!testAT()) { return false; } if (pin && strlen(pin) > 0) { DBG("ESP8266 modules do not use an unlock pin!"); } sendAT(GF("E0")); // Echo Off if (waitResponse() != 1) { return false; } sendAT(GF("+CIPMUX=1")); // Enable Multiple Connections if (waitResponse() != 1) { return false; } sendAT(GF("+CWMODE_CUR=1")); // Put into "station" mode if (waitResponse() != 1) { return false; } DBG(GF("### Modem:"), getModemName()); return true; } String getModemNameImpl() { return "ESP8266"; } void setBaudImpl(uint32_t baud) { sendAT(GF("+UART_CUR="), baud, "8,1,0,0"); } bool factoryDefaultImpl() { sendAT(GF("+RESTORE")); return waitResponse() == 1; } String getModemInfoImpl() { sendAT(GF("+GMR")); String res; if (waitResponse(1000L, res) != 1) { return ""; } res.replace(GSM_NL "OK" GSM_NL, ""); res.replace(GSM_NL, " "); res.trim(); return res; } bool thisHasSSL() { return true; } bool thisHasWifi() { return true; } bool thisHasGPRS() { return false; } /* * Power functions */ protected: bool restartImpl() { if (!testAT()) { return false; } sendAT(GF("+RST")); if (waitResponse(10000L) != 1) { return false; } if (waitResponse(10000L, GF(GSM_NL "ready" GSM_NL)) != 1) { return false; } delay(500); return init(); } bool powerOffImpl() { sendAT(GF("+GSLP=0")); // Power down indefinitely - until manually reset! return waitResponse() == 1; } bool radioOffImpl() TINY_GSM_ATTR_NOT_IMPLEMENTED; bool sleepEnableImpl(bool enable = true) TINY_GSM_ATTR_NOT_AVAILABLE; /* * SIM card functions */ protected: // SIM card functions don't apply /* * Generic network functions */ public: RegStatus getRegistrationStatus() { sendAT(GF("+CIPSTATUS")); if (waitResponse(3000, GF("STATUS:")) != 1) return REG_UNKNOWN; int status = waitResponse(GFP(GSM_ERROR), GF("2"), GF("3"), GF("4"), GF("5")); waitResponse(); // Returns an OK after the status return (RegStatus)status; } protected: int16_t getSignalQualityImpl() { sendAT(GF("+CWJAP_CUR?")); int res1 = waitResponse(GF("No AP"), GF("+CWJAP_CUR:")); if (res1 != 2) { waitResponse(); return 0; } streamSkipUntil(','); // Skip SSID streamSkipUntil(','); // Skip BSSID/MAC address streamSkipUntil(','); // Skip Chanel number int res2 = stream.parseInt(); // Read RSSI waitResponse(); // Returns an OK after the value return res2; } bool isNetworkConnectedImpl() { RegStatus s = getRegistrationStatus(); if (s == REG_OK_IP || s == REG_OK_TCP) { // with these, we're definitely connected return true; } else if (s == REG_OK_NO_TCP) { // with this, we may or may not be connected if (getLocalIP() == "") { return false; } else { return true; } } else { return false; } } /* * WiFi functions */ protected: bool networkConnectImpl(const char* ssid, const char* pwd) { sendAT(GF("+CWJAP_CUR=\""), ssid, GF("\",\""), pwd, GF("\"")); if (waitResponse(30000L, GFP(GSM_OK), GF(GSM_NL "FAIL" GSM_NL)) != 1) { return false; } return true; } bool networkDisconnectImpl() { sendAT(GF("+CWQAP")); bool retVal = waitResponse(10000L) == 1; waitResponse(GF("WIFI DISCONNECT")); return retVal; } /* * IP Address functions */ protected: String getLocalIPImpl() { sendAT(GF("+CIPSTA_CUR?")); int res1 = waitResponse(GF("ERROR"), GF("+CWJAP_CUR:")); if (res1 != 2) { return ""; } String res2 = stream.readStringUntil('"'); waitResponse(); return res2; } /* * Phone Call functions */ protected: bool callAnswerImpl() TINY_GSM_ATTR_NOT_AVAILABLE; bool callNumberImpl(const String& number) TINY_GSM_ATTR_NOT_AVAILABLE; bool callHangupImpl() TINY_GSM_ATTR_NOT_AVAILABLE; bool dtmfSendImpl(char cmd, int duration_ms = 100) TINY_GSM_ATTR_NOT_AVAILABLE; /* * Messaging functions */ protected: String sendUSSDImpl(const String& code) TINY_GSM_ATTR_NOT_AVAILABLE; bool sendSMSImpl(const String& number, const String& text) TINY_GSM_ATTR_NOT_AVAILABLE; bool sendSMS_UTF16Impl(const char* const number, const void* text, size_t len) TINY_GSM_ATTR_NOT_AVAILABLE; /* * Location functions */ protected: String getGsmLocationImpl() TINY_GSM_ATTR_NOT_AVAILABLE; /* * GPS location functions */ public: // No functions of this type supported /* * Time functions */ protected: String getGSMDateTimeImpl(TinyGSMDateTimeFormat format) TINY_GSM_ATTR_NOT_AVAILABLE; /* * Battery & temperature functions */ protected: uint16_t getBattVoltageImpl() TINY_GSM_ATTR_NOT_AVAILABLE; int8_t getBattPercentImpl() TINY_GSM_ATTR_NOT_AVAILABLE; uint8_t getBattChargeStateImpl() TINY_GSM_ATTR_NOT_AVAILABLE; bool getBattStatsImpl(uint8_t& chargeState, int8_t& percent, uint16_t& milliVolts) TINY_GSM_ATTR_NOT_AVAILABLE; float getTemperatureImpl() TINY_GSM_ATTR_NOT_AVAILABLE; /* * Client related functions */ protected: bool modemConnect(const char* host, uint16_t port, uint8_t mux, bool ssl = false, int timeout_s = 75) { uint32_t timeout_ms = ((uint32_t)timeout_s) * 1000; if (ssl) { sendAT(GF("+CIPSSLSIZE=4096")); waitResponse(); } sendAT(GF("+CIPSTART="), mux, ',', ssl ? GF("\"SSL") : GF("\"TCP"), GF("\",\""), host, GF("\","), port, GF(","), TINY_GSM_TCP_KEEP_ALIVE); // TODO(?): Check mux int rsp = waitResponse(timeout_ms, GFP(GSM_OK), GFP(GSM_ERROR), GF("ALREADY CONNECT")); // if (rsp == 3) waitResponse(); // May return "ERROR" after the "ALREADY CONNECT" return (1 == rsp); } int16_t modemSend(const void* buff, size_t len, uint8_t mux) { sendAT(GF("+CIPSEND="), mux, ',', (uint16_t)len); if (waitResponse(GF(">")) != 1) { return 0; } stream.write(reinterpret_cast(buff), len); stream.flush(); if (waitResponse(10000L, GF(GSM_NL "SEND OK" GSM_NL)) != 1) { return 0; } return len; } size_t modemRead(size_t, uint8_t) { return 0; } size_t modemGetAvailable(uint8_t) { return 0; } bool modemGetConnected(uint8_t mux) { sendAT(GF("+CIPSTATUS")); if (waitResponse(3000, GF("STATUS:")) != 1) { return false; } int status = waitResponse(GFP(GSM_ERROR), GF("2"), GF("3"), GF("4"), GF("5")); if (status != 3) { // if the status is anything but 3, there are no connections open waitResponse(); // Returns an OK after the status for (int muxNo = 0; muxNo < TINY_GSM_MUX_COUNT; muxNo++) { sockets[muxNo]->sock_connected = false; } return false; } bool verified_connections[TINY_GSM_MUX_COUNT] = {0, 0, 0, 0, 0}; for (int muxNo = 0; muxNo < TINY_GSM_MUX_COUNT; muxNo++) { uint8_t has_status = waitResponse(GF("+CIPSTATUS:"), GFP(GSM_OK), GFP(GSM_ERROR)); if (has_status == 1) { int returned_mux = stream.readStringUntil(',').toInt(); streamSkipUntil(','); // Skip mux streamSkipUntil(','); // Skip type streamSkipUntil(','); // Skip remote IP streamSkipUntil(','); // Skip remote port streamSkipUntil(','); // Skip local port streamSkipUntil('\n'); // Skip client/server type verified_connections[returned_mux] = 1; } if (has_status == 2) break; // once we get to the ok, stop } for (int muxNo = 0; muxNo < TINY_GSM_MUX_COUNT; muxNo++) { sockets[muxNo]->sock_connected = verified_connections[muxNo]; } return verified_connections[mux]; } /* * Utilities */ public: // TODO(vshymanskyy): Optimize this! uint8_t waitResponse(uint32_t timeout_ms, String& data, GsmConstStr r1 = GFP(GSM_OK), GsmConstStr r2 = GFP(GSM_ERROR), GsmConstStr r3 = GFP(GSM_CME_ERROR), GsmConstStr r4 = NULL, GsmConstStr r5 = NULL) { /*String r1s(r1); r1s.trim(); String r2s(r2); r2s.trim(); String r3s(r3); r3s.trim(); String r4s(r4); r4s.trim(); String r5s(r5); r5s.trim(); DBG("### ..:", r1s, ",", r2s, ",", r3s, ",", r4s, ",", r5s);*/ data.reserve(64); uint8_t index = 0; uint32_t startMillis = millis(); do { TINY_GSM_YIELD(); while (stream.available() > 0) { TINY_GSM_YIELD(); int a = stream.read(); if (a <= 0) continue; // Skip 0x00 bytes, just in case data += static_cast(a); if (r1 && data.endsWith(r1)) { index = 1; goto finish; } else if (r2 && data.endsWith(r2)) { index = 2; goto finish; } else if (r3 && data.endsWith(r3)) { index = 3; goto finish; } else if (r4 && data.endsWith(r4)) { index = 4; goto finish; } else if (r5 && data.endsWith(r5)) { index = 5; goto finish; } else if (data.endsWith(GF("+IPD,"))) { int mux = stream.readStringUntil(',').toInt(); int len = stream.readStringUntil(':').toInt(); int len_orig = len; if (len > sockets[mux]->rx.free()) { DBG("### Buffer overflow: ", len, "received vs", sockets[mux]->rx.free(), "available"); } else { DBG("### Got Data: ", len, "on", mux); } while (len--) { moveCharFromStreamToFifo(mux); } // TODO(SRGDamia1): deal with buffer overflow/missed characters if (len_orig > sockets[mux]->available()) { DBG("### Fewer characters received than expected: ", sockets[mux]->available(), " vs ", len_orig); } data = ""; } else if (data.endsWith(GF("CLOSED"))) { int muxStart = TinyGsmMax(0, data.lastIndexOf(GSM_NL, data.length() - 8)); int coma = data.indexOf(',', muxStart); int mux = data.substring(muxStart, coma).toInt(); if (mux >= 0 && mux < TINY_GSM_MUX_COUNT && sockets[mux]) { sockets[mux]->sock_connected = false; } data = ""; DBG("### Closed: ", mux); } } } while (millis() - startMillis < timeout_ms); finish: if (!index) { data.trim(); if (data.length()) { DBG("### Unhandled:", data); } data = ""; } // data.replace(GSM_NL, "/"); // DBG('<', index, '>', data); return index; } uint8_t waitResponse(uint32_t timeout_ms, GsmConstStr r1 = GFP(GSM_OK), GsmConstStr r2 = GFP(GSM_ERROR), GsmConstStr r3 = GFP(GSM_CME_ERROR), GsmConstStr r4 = NULL, GsmConstStr r5 = NULL) { String data; return waitResponse(timeout_ms, data, r1, r2, r3, r4, r5); } uint8_t waitResponse(GsmConstStr r1 = GFP(GSM_OK), GsmConstStr r2 = GFP(GSM_ERROR), GsmConstStr r3 = GFP(GSM_CME_ERROR), GsmConstStr r4 = NULL, GsmConstStr r5 = NULL) { return waitResponse(1000, r1, r2, r3, r4, r5); } protected: Stream& stream; GsmClientESP8266* sockets[TINY_GSM_MUX_COUNT]; const char* gsmNL = GSM_NL; }; #endif // SRC_TINYGSMCLIENTESP8266_H_