-
Notifications
You must be signed in to change notification settings - Fork 793
group__simcom__sim7080
Sara Damiano edited this page Sep 11, 2026
·
2 revisions
Module: Supported Modules / SIMCom / SIMCom SIM70xx (SIM7000, SIM7070, SIM7080, SIM7090) / SIMCom SIM7070, SIM7080, SIM7090
Manufacturer: SIMCom. Models: SIM7070, SIM7080, SIM7090.
- Combined TCP/SSL sockets:
- 12
- SSL contexts:
- 6
- Socket Buffering:
- The modem has an internal buffer for incoming data.
- Socket Numbering:
- The modem respects user-specified multiplexing channel numbers/identifiers for socket connections. Todo: todo
-
TinyGsmSim7080
- GSM Modem Constructor
- Basic functions (TinyGsmModem.tpp)
- begin(const char* pin = nullptr)
- init(const char* pin = nullptr)
- sendAT(Args... cmd)
- setBaud(uint32_t baud)
- forceModemBaud(StreamObject& at_serial, uint32_t targetBaud)
- testAT(uint32_t timeout_ms = 10000L)
- waitResponse(uint32_t timeout_ms, String& data, GsmConstStr r1 = GFP(ModemConfig::GSM_OK), GsmConstStr r2 = GFP(ModemConfig::GSM_ERROR), GsmConstStr r3 = nullptr, GsmConstStr r4 = nullptr, GsmConstStr r5 = nullptr, GsmConstStr r6 = nullptr, GsmConstStr r7 = nullptr, GsmConstStr r8 = nullptr)
- waitResponse(uint32_t timeout_ms, GsmConstStr r1 = GFP(ModemConfig::GSM_OK), GsmConstStr r2 = GFP(ModemConfig::GSM_ERROR), GsmConstStr r3 = nullptr, GsmConstStr r4 = nullptr, GsmConstStr r5 = nullptr, GsmConstStr r6 = nullptr, GsmConstStr r7 = nullptr, GsmConstStr r8 = nullptr)
- waitResponse(GsmConstStr r1 = GFP(ModemConfig::GSM_OK), GsmConstStr r2 = GFP(ModemConfig::GSM_ERROR), GsmConstStr r3 = nullptr, GsmConstStr r4 = nullptr, GsmConstStr r5 = nullptr, GsmConstStr r6 = nullptr, GsmConstStr r7 = nullptr, GsmConstStr r8 = nullptr)
- getConfiguredModem()
- getModemInfo()
- getModemName()
- getModemManufacturer()
- getModemModel()
- getModemRevision()
- getModemSerialNumber()
- factoryDefault()
- Power functions (TinyGsmModem.tpp)
- Generic network functions (TinyGsmModem.tpp)
- Network mode / type / technology functions
- SIM card functions (TinyGsmGPRS.tpp)
- GPRS functions (TinyGsmGPRS.tpp)
- Socket listening functions (TinyGsmTCP.tpp)
- Secure socket layer (SSL) certificate management functions (TinyGsmSSL.tpp)
- TinyGsmSSL()
- TinyGsmSSL(modemType& , uint8_t = 0)
- loadCertificate(const char* certificateName, const char* cert, const uint16_t len)
- loadCertificate(const String& certificateName, const String& cert, const uint16_t len)
- deleteCertificate(const String& filename)
- printCertificate(const char* filename, Stream& print_stream)
- printCertificate(const String& filename, Stream& print_stream)
- convertCertificate(CertificateType cert_type, const char* filename)
- convertCertificate(CertificateType cert_type, const String& filename)
- convertCACertificate(const char* ca_cert_name)
- convertCACertificate(const String& ca_cert_name)
- convertClientCertificates(const char* client_cert_name, const char* client_cert_key)
- convertClientCertificates(const String& client_cert_name, const String& client_cert_key)
- convertPSKandID(const String& psk, const String& pskIdent)
- convertPSKTable(const char* psk_table_name)
- convertPSKTable(const String& psk_table_name)
- SSL context functions
- configureSSLContext(uint8_t context_id, const char* sni, SSLAuthMode sslAuthMode, SSLVersion sslVersion)
- applySSLCertificates(uint8_t mux, SSLAuthMode sslAuthMode, const char* CAcertName, const char* clientCertName, const char* clientKeyName)
- applySSLPSK(uint8_t mux, const char* pskTableName)
- linkSSLContext(uint8_t mux, uint8_t context_id)
- Text messaging (SMS) functions (TinyGsmSMS.tpp)
- GSM location functions (TinyGsmGSMLocation.tpp)
- GPS (GNSS, GLONASS) functions (TinyGsmGPS.tpp)
- enableGPS()
- disableGPS()
- getGPSraw()
- getGPS(float* lat, float* lon, float* speed = 0, float* alt = 0, int* vsat = 0, int* usat = 0, float* accuracy = 0, int* year = 0, int* month = 0, int* day = 0, int* hour = 0, int* minute = 0, int* second = 0)
- getGPSTime(int* year, int* month, int* day, int* hour, int* minute, int* second)
- NTP server functions (TinyGsmNTP.tpp)
- NTPServerSync(const char* server =pool.ntp.org", int TimeZone = 0)"
- NTPServerSync(const String& server, int TimeZone = 0)
- waitForTimeSync(uint16_t timeout_s = 120)
- Time functions (TinyGsmTime.tpp)
- Battery functions (TinyGsmBattery.tpp)
- Utilities (TinyGsmModem.tpp)
-
GsmClientSim7080
- Arduino Client interface (TinyGsmTCP.tpp)
- connect(const char* host, uint16_t port, int timeout_s)
- connect(IPAddress ip, uint16_t port, int timeout_s)
- connect(const char* host, uint16_t port)
- connect(IPAddress ip, uint16_t port)
- stop(uint32_t maxWaitMs)
- stop()
- write(const uint8_t* buf, size_t size)
- write(uint8_t c)
- available()
- read(uint8_t* buf, size_t size)
- read()
- peek()
- flush()
- connected()
- Extended Client API (TinyGsmTCP.tpp)
- Arduino Client interface (TinyGsmTCP.tpp)
-
GsmClientSecureSim7080
- Client constructors and initialization
- GsmClientSecureSim7080()
- GsmClientSecureSim7080(TinyGsmSim7080& modem, uint8_t mux = 0)
- GsmClientSecureSim7080(TinyGsmSim7080& modem, SSLAuthMode sslAuthMode, SSLVersion sslVersion = SSLVersion::TLS1_2, const char* CAcertName = nullptr, const char* clientCertName = nullptr, const char* clientKeyName = nullptr)
- GsmClientSecureSim7080(TinyGsmSim7080& modem, uint8_t mux, SSLAuthMode sslAuthMode, SSLVersion sslVersion = SSLVersion::TLS1_2, const char* CAcertName = nullptr, const char* clientCertName = nullptr, const char* clientKeyName = nullptr)
- GsmClientSecureSim7080(TinyGsmSim7080& modem, const char* pskIdent, const char* psKey, SSLVersion sslVersion = SSLVersion::TLS1_2)
- GsmClientSecureSim7080(TinyGsmSim7080& modem, uint8_t mux, const char* pskIdent, const char* psKey, SSLVersion sslVersion = SSLVersion::TLS1_2)
- GsmClientSecureSim7080(TinyGsmSim7080& modem, const char* pskTableName, SSLVersion sslVersion = SSLVersion::TLS1_2)
- GsmClientSecureSim7080(TinyGsmSim7080& modem, uint8_t mux, const char* pskTableName, SSLVersion sslVersion = SSLVersion::TLS1_2)
- Client SSL configuration functions (TinyGsmSSL.tpp)
- Arduino Client interface (TinyGsmTCP.tpp)
- connect(const char* host, uint16_t port, int timeout_s)
- connect(IPAddress ip, uint16_t port, int timeout_s)
- connect(const char* host, uint16_t port)
- connect(IPAddress ip, uint16_t port)
- stop(uint32_t maxWaitMs)
- stop()
- write(const uint8_t* buf, size_t size)
- write(uint8_t c)
- available()
- read(uint8_t* buf, size_t size)
- read()
- peek()
- flush()
- connected()
- Client certificate assignment functions (TinyGsmSSL.tpp)
- Client PSK assignment functions (TinyGsmSSL.tpp)
- Extended Client API (TinyGsmTCP.tpp)
- Client constructors and initialization
| Name | |
|---|---|
| struct |
TinyGsmSim7080ModemConfig Basic modem configurations for the SIMCom SIM7080 modem family. |
| struct |
TinyGsmSim7080TcpConfig TCP behavior and limits for the SIMCom SIM7080 modem family. |
| class |
TinyGsmSim7080 Class for the SIMCOM SIM7070, SIM7080, and SIM7090. |
| class |
TinyGsmSim7080::GsmClientSim7080 Inner client. |
| class |
TinyGsmSim7080::GsmClientSecureSim7080 Inner secure client. |
Generated by Doxygen and m.css with templates from doxybook2 Updated on 2026-09-11
If you like TinyGSM library - give it a star, or fork it and contribute!