Arduino_ConnectionHandler
Arduino_ConnectionHandler copied to clipboard
Maintainer is changed from `Arduino.cc` to `Arduino ` within the `library.properties` file.
Follows precedent established by Wi-Fi implementation.
At line 101 in `Arduino_WiFiConnectionHandler.cpp`: https://github.com/arduino-libraries/Arduino_ConnectionHandler/blob/2b21c3c361428f38b95b9a3f506a4cf7e7a85c87/src/Arduino_WiFiConnectionHandler.cpp#L101 The code should check for an empty password and, if so, call `WiFi.begin(_ssid)` instead of `WiFi.begin(_ssid, _password)`. `WiFi.begin(_ssid, "")` results in a failed connection...
Added new client functions for TCP and SSL over TCP connection
Added new client methods for TCP and SSL over TCP connection
This PR adds support for specifying custom timeouts on Ethernet connections. Combined with the ArduinoIoTCloud library, this PR allows writing sketches that don't block for 15s in the `loop()` if...
I am using this along with the arduino mqtt library and its all working well however i now need to connect to an mqtt broker using TLS, i was surprised...
This PR aims to split the entrypoint for this library into definitions of macro config values, connectionHandlerInterface. This allows to avoid cyclic includes in the extension of functionalities of this...