Skip to content

example_sim800_ssl_set_cert

Sara Damiano edited this page Sep 11, 2026 · 1 revision

title: SIM800 SSL Set Cert

SIM800 SSL Set Cert

This example uploads SSL certificate material to SIM8xx modems. Replace the bundled expired certificates before establishing TLS connections.


The Complete Code

/** ============================================================================
 * @example{lineno} SIM800_SslSetCert.ino
 *
 * @brief This sketch uploads SSL certificates to the SIM8xx
 *
 * @warning The actual certificates included in this example are expired and
 * will not work for SSL connections.  You must replace them with valid
 * certificates for your application.
 * ========================================================================== */

// This example is specific to SIM8xx
// #define TINY_GSM_MODEM_SIM800

#include <TinyGsmClient.h>

#if (defined(ARDUINO_NRF52840_FEATHER)) && !defined(ADAFRUIT_TINYUSB_H_)
#include <Adafruit_TinyUSB.h>  // for Serial
#endif

// Select your certificate:
#include "DSTRootCAX3.h"  // Expired 2021-09-30
// #include "DSTRootCAX3.der.h"  // Expired 2021-09-30
// #include "COMODORSACertificationAuthority.h"

// Select the file you want to write into
// (the file is stored on the modem)
#define CERT_FILE "C:\\USER\\CERT.CRT"

// Set serial for debug console (to the Serial Monitor)
#define SerialMon Serial

// Use Hardware Serial for AT commands
#define SerialAT Serial1

// Uncomment this if you want to see all AT commands
// #define DUMP_AT_COMMANDS


#ifdef DUMP_AT_COMMANDS
#include <StreamDebugger.h>
StreamDebugger debugger(SerialAT, SerialMon);
TinyGsm        modem(debugger);
#else
TinyGsm modem(SerialAT);
#endif

void setup() {
  // Set console baud rate
  SerialMon.begin(115200);
  delay(10);

  // Set GSM module baud rate
  SerialAT.begin(115200);
  delay(6000);

  SerialMon.println(F("Initializing modem..."));
  modem.init();

  modem.sendAT(GF("+FSCREATE=" CERT_FILE));
  if (modem.waitResponse() != 1) return;

  const int cert_size = sizeof(cert);

  modem.sendAT(GF("+FSWRITE=" CERT_FILE ",0,"), cert_size, GF(",10"));
  if (modem.waitResponse(GF(">")) != 1) { return; }

  for (int i = 0; i < cert_size; i++) {
    char c = pgm_read_byte(&cert[i]);
    modem.stream.write(c);
  }

  // SIM8xx modules use "\r\n" as their line ending
  modem.stream.write("\r\n");
  modem.stream.flush();

  if (modem.waitResponse(2000) != 1) return;

  modem.sendAT(GF("+SSLSETCERT=\"" CERT_FILE "\""));
  if (modem.waitResponse() != 1) return;
  if (modem.waitResponse(5000L, GF("+SSLSETCERT:")) != 1) return;
  const int retCode = modem.stream.readStringUntil('\n').toInt();


  SerialMon.println();
  SerialMon.println();
  SerialMon.println(F("****************************"));
  SerialMon.print(F("Setting Certificate: "));
  SerialMon.println((0 == retCode) ? "OK" : "FAILED");
  SerialMon.println(F("****************************"));
}

void loop() {
  if (SerialAT.available()) { SerialMon.write(SerialAT.read()); }
  if (SerialMon.available()) { SerialAT.write(SerialMon.read()); }
  delay(0);
}

Generated by Doxygen and m.css with templates from doxybook2 Updated on 2026-09-11

Clone this wiki locally