This commit is contained in:
Alexander 2024-07-04 00:12:07 -04:00
parent 5a86b36353
commit 7b7af534e9

View File

@ -76,4 +76,18 @@ static const char NODE_CERT_CA[] PROGMEM = R"EOF(
-----END CERTIFICATE-----
)EOF";
// MQTT Client Certificate
static const char NODE_CERT_CRT [] PROGMEM = R"EOF(
-----BEGIN CERTIFICATE-----
< Cut&Paste content of client certificate over here >
-----END CERTIFICATE-----
)EOF";
// MQTT Client Key
static const char NODE_CERT_PRIVATE [] PROGMEM = R"EOF(
-----BEGIN CERTIFICATE-----
< Cut&Paste content of client key over here >
-----END CERTIFICATE-----
)EOF";
```