Remove Secure Connection macro and add the config to wifimanager.#961
Remove Secure Connection macro and add the config to wifimanager.#961h2zero merged 1 commit into1technophile:developmentfrom
Conversation
|
Build fails on env:nodemcuv2-2g platformio/packages/framework-arduinoespressif8266/tools/sdk/libc/xtensa-lx106-elf/lib/libc.a(lib_a-sscanf.o): in function Cause is the A6lib sscanf.cpp is redefining newlib functions. Seems that the file could be removed from the lib as that was included before newlib was in the 8266 framework I believe. |
53c64f9 to
2bc9b42
Compare
I would suggest to fork it, modify and point to the fork temporarily. |
387cc56 to
5f858e8
Compare
done |
a628b22 to
b39aa6d
Compare
This adds the ability to specify if the MQTT broker connection is secure via a checkbox on the config page of WiFiManager. Also added to the WiFiManager config page is a text box to enter the brokers TLS certificate. In the case of using manual configuration a new macro is created MQTT_SECURE_DEFAULT. When defined as true a secure connection will be requested and the certificate defined in user_config.h will be used.
…echnophile#961) This adds the ability to specify if the MQTT broker connection is secure via a checkbox on the config page of WiFiManager. Also added to the WiFiManager config page is a text box to enter the brokers TLS certificate. In the case of using manual configuration a new macro is created MQTT_SECURE_DEFAULT. When defined as true a secure connection will be requested and the certificate defined in user_config.h will be used.
This adds the ability to specify if the MQTT broker connection is secure via a checkbox on the config page of WiFiManager.
Also added to the WiFiManager config page is a text box to enter the brokers TLS certificate.
In the case of using manual configuration a new macro is created
MQTT_SECURE_DEFAULT; when defined astruea secure connection will be requested and the certificate defined in user_config.h will be used.