Skip to content
Snippets Groups Projects
Verified Commit eee83fc3 authored by Zoe Michaela Dietmar Pfister's avatar Zoe Michaela Dietmar Pfister :gay_pride_flag:
Browse files

WIP: Added more methods to ConnectionManager (renamed from LTEConnection)

parent 858467ad
No related branches found
No related tags found
2 merge requests!39Merge Develop into Main,!23NTP Refactor into dev
...@@ -2,35 +2,28 @@ ...@@ -2,35 +2,28 @@
// Created by zoe on 12/20/22. // Created by zoe on 12/20/22.
// //
#include "LTEConnection.h" #include "ConnectionManager.h"
#include "ModemFunctionalityLevel.h"
#include "LTEConnectionException.hpp" #include "LTEConnectionException.hpp"
#include "ModemFunctionalityLevel.h"
#include <utility> #include <utility>
std::string LTEConnection::connect(const std::string &host, const std::string &port) { ConnectionManager::ConnectionManager(TinyGsm &client, GPRSCredentials credentials)
return std::__cxx11::string(); : modem(client), credentials(std::move(credentials)) {}
}
LTEConnection::LTEConnection(TinyGsm &client, GPRSCredentials credentials) : client(client),
credentials(
std::move(
credentials)) {}
void LTEConnection::restartModem() { void ConnectionManager::restartModem() {
// Restart takes quite some time // Restart takes quite some time
// To skip it, call init() instead of restart() // To skip it, call init() instead of restart()
esp_log_write(ESP_LOG_DEBUG, TAG_GSM.c_str(), "Restarting modem...\n"); esp_log_write(ESP_LOG_DEBUG, TAG_GSM.c_str(), "Restarting modem...\n");
if (!client.restart()) { if (!modem.restart()) {
esp_log_write(ESP_LOG_WARN, TAG_GSM.c_str(), esp_log_write(ESP_LOG_WARN, TAG_GSM.c_str(),
"Failed to restart modem, attempting to continue without restarting\n"); "Failed to restart modem, attempting to continue without restarting\n");
} }
} }
void LTEConnection::initModem() { void ConnectionManager::initModem() {
esp_log_write(ESP_LOG_DEBUG, TAG_GSM.c_str(), "Initializing modem...\n"); esp_log_write(ESP_LOG_DEBUG, TAG_GSM.c_str(), "Initializing modem...\n");
if (!client.init()) { if (!modem.init()) {
esp_log_write(ESP_LOG_WARN, TAG_GSM.c_str(), esp_log_write(ESP_LOG_WARN, TAG_GSM.c_str(),
"Failed to initialize modem, attempting to continue by restarting\n"); "Failed to initialize modem, attempting to continue by restarting\n");
// might not be the cleanest design // might not be the cleanest design
...@@ -39,43 +32,43 @@ void LTEConnection::initModem() { ...@@ -39,43 +32,43 @@ void LTEConnection::initModem() {
setModemFunctionalityLevel(MINIMAL); setModemFunctionalityLevel(MINIMAL);
} }
void void ConnectionManager::setModemFunctionalityLevel(
LTEConnection::setModemFunctionalityLevel( ModemFunctionalityLevel functionalityLevel) { // This sets the level of functionality of the modem. Full
ModemFunctionalityLevel functionalityLevel) {// This sets the level of functionality of the modem. Full functionality is where the highest // functionality is where the highest
// level of power is drawn. Minimum functionality (default) is where the lowest level of power is drawn. // level of power is drawn. Minimum functionality (default) is where the lowest level of power is drawn.
// https://m2msupport.net/m2msupport/atcfun-set-phone-functionality/ // https://m2msupport.net/m2msupport/atcfun-set-phone-functionality/
client.sendAT(("+CFUN=" + std::to_string(ModemFunctionalityLevel::MINIMAL) + " ").c_str()); modem.sendAT(("+CFUN=" + std::to_string(ModemFunctionalityLevel::MINIMAL) + " ").c_str());
if (client.waitResponse(10000L) != 1) { if (modem.waitResponse(10000L) != 1) {
DBG(" +CFUN=0 false "); DBG(" +CFUN=0 false ");
} }
} }
void LTEConnection::disableGPS() { void ConnectionManager::disableGPS() {
// Set SIM7000G GPIO4 LOW ,turn off GPS power // Set SIM7000G GPIO4 LOW ,turn off GPS power
// CMD:AT+SGPIO=0,4,1,0 // CMD:AT+SGPIO=0,4,1,0
// Only in version 20200415 is there a function to control GPS power // Only in version 20200415 is there a function to control GPS power
client.sendAT("+SGPIO=0,4,1,0"); modem.sendAT("+SGPIO=0,4,1,0");
if (client.waitResponse(10000L) != 1) { if (modem.waitResponse(10000L) != 1) {
DBG(" SGPIO=0,4,1,0 false "); DBG(" SGPIO=0,4,1,0 false ");
} }
client.disableGPS(); modem.disableGPS();
} }
void LTEConnection::enableGPS() { void ConnectionManager::enableGPS() {
// Set SIM7000G GPIO4 LOW ,turn on GPS power // Set SIM7000G GPIO4 LOW ,turn on GPS power
// CMD:AT+SGPIO=0,4,1,1 // CMD:AT+SGPIO=0,4,1,1
// Only in version 20200415 is there a function to control GPS power // Only in version 20200415 is there a function to control GPS power
client.sendAT("+SGPIO=0,4,1,1"); modem.sendAT("+SGPIO=0,4,1,1");
if (client.waitResponse(10000L) != 1) { if (modem.waitResponse(10000L) != 1) {
DBG(" SGPIO=0,4,1,1 false "); DBG(" SGPIO=0,4,1,1 false ");
} }
client.enableGPS(); modem.enableGPS();
} }
void LTEConnection::setNetworkMode(NetworkMode networkMode) { void ConnectionManager::setNetworkMode(NetworkMode networkMode) {
String res; String res;
res = client.setNetworkMode(networkMode); res = modem.setNetworkMode(networkMode);
if (res != "1") { if (res != "1") {
DBG("setNetworkMode false "); DBG("setNetworkMode false ");
throw LTEConnectionException("Failed to set network mode"); throw LTEConnectionException("Failed to set network mode");
...@@ -83,19 +76,58 @@ void LTEConnection::setNetworkMode(NetworkMode networkMode) { ...@@ -83,19 +76,58 @@ void LTEConnection::setNetworkMode(NetworkMode networkMode) {
delay(200); delay(200);
} }
void LTEConnection::setPreferredMode(Mode mode) { void ConnectionManager::setPreferredMode(Mode mode) {
/*AT+CBANDCFG=<mode>,<band>[,<band>…] /*AT+CBANDCFG=<mode>,<band>[,<band>…]
* <mode> "CAT-M" "NB-IOT" * <mode> "CAT-M" "NB-IOT"
* <band> The value of <band> must is in the band list of getting from AT+CBANDCFG=? * <band> The value of <band> must is in the band list of getting from AT+CBANDCFG=?
* For example, my SIM card carrier "NB-iot" supports B8. I will configure +CBANDCFG= "Nb-iot ",8 * For example, my SIM card carrier "NB-iot" supports B8. I will configure +CBANDCFG= "Nb-iot ",8
*/ */
client.sendAT("+CBANDCFG=\"CAT-M\",8 "); modem.sendAT("+CBANDCFG=\"CAT-M\",8 ");
if (client.waitResponse(10000L) != 1) { if (modem.waitResponse(10000L) != 1) {
DBG(" +CBANDCFG=\"NB-IOT\" "); DBG(" +CBANDCFG=\"NB-IOT\" ");
} }
delay(200); delay(200);
}
void ConnectionManager::setBand(BandMode bandMode, int band) {
/*AT+CBANDCFG=<mode>,<band>[,<band>…]
* <mode> "CAT-M" "NB-IOT"
* <band> The value of <band> must is in the band list of getting from AT+CBANDCFG=?
* For example, my SIM card carrier "NB-iot" supports B8. I will configure +CBANDCFG= "Nb-iot ",8
*/
bandMode == BandMode::BAND_CAT_M ? modem.sendAT(("+CBANDCFG=\"CAT-M\"," + std::to_string(band) + " ").c_str())
: modem.sendAT(("+CBANDCFG=\"NB-IOT\"," + std::to_string(band) + " ").c_str());
if (modem.waitResponse(10000L) != 1) {
DBG(" +CBANDCFG=\"NB-IOT\" ");
}
delay(200);
} }
bool ConnectionManager::gprsConnect() {
return modem.gprsConnect(credentials.apn.c_str(), credentials.user.c_str(), credentials.password.c_str());
}
bool ConnectionManager::isNetworkConnected() {
return modem.isNetworkConnected();
}
std::string ConnectionManager::connect(const std::string &host, int port, RequestInformation requestInformation) {
TinyGsmClient client{modem};
if (!client.connect(host.c_str(), port)) {
throw LTEConnectionException("Failed to connect to host");
}
String request = requestInformation.buildRequest();
client.print(request);
String line;
// print response
while (client.connected()) {
line += client.readStringUntil('\n');
if (line == "\r") {
esp_log_write(ESP_LOG_DEBUG, TAG_GSM.c_str(), "headers received\n");
break;
}
}
client.stop();
return line.c_str();
}
...@@ -2,31 +2,30 @@ ...@@ -2,31 +2,30 @@
// Created by zoe on 12/20/22. // Created by zoe on 12/20/22.
// //
#ifndef HOST_CENTRAL_MAST_LTECONNECTION_H #ifndef HOST_CENTRAL_MAST_CONNECTIONMANAGER_H
#define HOST_CENTRAL_MAST_LTECONNECTION_H #define HOST_CENTRAL_MAST_CONNECTIONMANAGER_H
#define TINY_GSM_MODEM_SIM7000 #define TINY_GSM_MODEM_SIM7000
#include <TinyGsmClient.h>
#include "GPRSCredentials.h" #include "GPRSCredentials.h"
#include "StreamDebugger.h" #include "Mode.h"
#include "ModemFunctionalityLevel.h" #include "ModemFunctionalityLevel.h"
#include "NetworkMode.h" #include "NetworkMode.h"
#include "Mode.h" #include "RequestInformation.h"
#include "StreamDebugger.h"
#include <TinyGsmClient.h>
static const std::string TAG_GSM = "GSM"; static const std::string TAG_GSM = "GSM";
class LTEConnection { class ConnectionManager {
private: private:
TinyGsm &client; TinyGsm &modem;
const GPRSCredentials credentials; const GPRSCredentials credentials;
public:
ConnectionManager(TinyGsm &client, GPRSCredentials credentials);
public: std::string connect(const std::string &host, int port, RequestInformation requestInformation);
LTEConnection(TinyGsm &client, GPRSCredentials credentials);
std::string connect(const std::string &host, const std::string &port);
void enableGPS(); void enableGPS();
...@@ -41,7 +40,14 @@ public: ...@@ -41,7 +40,14 @@ public:
void setPreferredMode(Mode mode = Mode::CAT_M); void setPreferredMode(Mode mode = Mode::CAT_M);
void setModemFunctionalityLevel(ModemFunctionalityLevel functionalityLevel = MINIMAL); void setModemFunctionalityLevel(ModemFunctionalityLevel functionalityLevel = MINIMAL);
};
enum BandMode { BAND_CAT_M, BAND_NB_IoT };
void setBand(BandMode bandMode, int band);
bool gprsConnect();
bool isNetworkConnected();
};
#endif //HOST_CENTRAL_MAST_LTECONNECTION_H #endif // HOST_CENTRAL_MAST_CONNECTIONMANAGER_H
//
// Created by zoe on 1/9/23.
//
#ifndef HOST_CENTRAL_MAST_REQUESTINFORMATION_H
#define HOST_CENTRAL_MAST_REQUESTINFORMATION_H
#include <Arduino.h>
struct RequestInformation {
String method;
String host;
String path;
String body;
RequestInformation(String method, String host, String path, String body) {
this->method = method;
this->host = host;
this->path = path;
this->body = body;
}
// TODO: Move to configuration file
const String INFLUXDB_TOKEN =
"dUh2gbVLv7e3egqocxriDsJQNUacA9qZ5YXsYtdnVAglnHgy4nx-jDVO7nGlSF34BosfnuwnUDaviC7dQeC5RQ==";
String buildRequest() {
String request = "";
request += method + " " + path + " HTTP/1.1\r\n";
request += "Host: " + host + "\r\n";
request += "Authorization: Token " + INFLUXDB_TOKEN + "\r\n";
request += "User-Agent: ESP32\r\n";
request += "Content-Type: text/plain\r\n";
request += "Content-Length: " + String(body.length()) + "\r\n";
request += "\r\n";
request += body;
return request;
}
};
#endif // HOST_CENTRAL_MAST_REQUESTINFORMATION_H
...@@ -31,15 +31,15 @@ void TimeManager::syncNTP(const std::string &ntpServer) { ...@@ -31,15 +31,15 @@ void TimeManager::syncNTP(const std::string &ntpServer) {
} }
} }
time_t TimeManager::timeToUnixEpochSeconds(const std::string &time) { time_t TimeManager::timeToUnixEpochSeconds(const std::string &time, const std::string &format) {
// 22/10/27,10:16:20+00 // 22/10/27,10:16:20+00
struct tm tm{}; struct tm tm {};
time_t dateInEpoch = 0; time_t dateInEpoch = 0;
std::stringstream stringStream(time); std::stringstream stringStream(time);
try { try {
stringStream >> std::get_time(&tm, "%y/%m/%d,%H:%M:%S%z"); stringStream >> std::get_time(&tm, format.c_str());
} catch (std::exception &e) { } catch (std::exception &e) {
throw StringToTimeConversionException(("Error converting time to epoch %s", e.what())); throw StringToTimeConversionException(("Error converting time to epoch %s", e.what()));
} }
......
...@@ -7,19 +7,19 @@ ...@@ -7,19 +7,19 @@
#define TINY_GSM_MODEM_SIM7000 #define TINY_GSM_MODEM_SIM7000
#include <TinyGsmClientSIM7000.h> #include "ESP32Time.h"
#include <string>
#include "NTPException.hpp" #include "NTPException.hpp"
#include "StringToTimeConversionException.hpp" #include "StringToTimeConversionException.hpp"
#include "ESP32Time.h" #include <TinyGsmClientSIM7000.h>
#include <iomanip> #include <iomanip>
#include <string>
class TimeManager { class TimeManager {
public: public:
explicit TimeManager(TinyGsmSim7000 &modem); explicit TimeManager(TinyGsmSim7000 &modem);
private: private:
constexpr static char *TAG = "GSM"; constexpr static char *TAG = "TimeManager";
ESP32Time rtc; ESP32Time rtc;
int timeZone = 0; int timeZone = 0;
...@@ -30,11 +30,10 @@ private: ...@@ -30,11 +30,10 @@ private:
void syncNTP(const std::string &ntpServer = "time1.uibk.ac.at"); void syncNTP(const std::string &ntpServer = "time1.uibk.ac.at");
// convert time to unix epoch seconds // convert time to unix epoch seconds
time_t timeToUnixEpochSeconds(const std::string &time); static time_t timeToUnixEpochSeconds(const std::string &time, const std::string &format = "%y/%m/%d,%H:%M:%S%z");
// write modem time to rtc // write modem time to rtc
void writeModemTimeToRTC(); void writeModemTimeToRTC();
}; };
#endif // HOST_CENTRAL_MAST_TIMEMANAGER_H
#endif //HOST_CENTRAL_MAST_TIMEMANAGER_H \ No newline at end of file
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment