client portierung auf esp32-s3 hinzu
This commit is contained in:
parent
6e5dfe4e9c
commit
473c114053
4 changed files with 251 additions and 0 deletions
27
source/client/esp32-s3/statusclient/certs.template
Normal file
27
source/client/esp32-s3/statusclient/certs.template
Normal file
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* file: certs.template
|
||||
* desc: This file is part of the Krautspace Doorstatus project. It contains
|
||||
* certificates for the statusclient.ino programm, that runs on an esp32-s3
|
||||
* board (esp32-1732s019).
|
||||
*
|
||||
* Replace the comments in certificate sections with our own certificates.
|
||||
*/
|
||||
|
||||
constexpr static inline char const CA_CERTS[] PROGMEM = R"EOF(
|
||||
-----BEGIN CERTIFICATE-----
|
||||
place here your servers public cert
|
||||
-----END CERTIFICATE-----
|
||||
)EOF";
|
||||
|
||||
constexpr static inline char const CLIENT_CERT[] PROGMEM = R"EOF(
|
||||
-----BEGIN CERTIFICATE-----
|
||||
place here your clients public dert
|
||||
-----END CERTIFICATE-----
|
||||
)EOF";
|
||||
|
||||
constexpr static inline char const CLIENT_KEY[] PROGMEM = R"EOF(
|
||||
-----BEGIN RSA PRIVATE KEY-----
|
||||
place here your clients private key
|
||||
-----END RSA PRIVATE KEY-----
|
||||
)EOF";
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue