Arduino_ConnectionHandler icon indicating copy to clipboard operation
Arduino_ConnectionHandler copied to clipboard

Results 26 Arduino_ConnectionHandler issues
Sort by recently updated
recently updated
newest added

Need to Add CI

type: enhancement
topic: code

I have a use case for my research where I am trying to use the ArduinoIOTCloud library on a Teensy 4.0 with an ATECC608A along with a Wiznet Ethernet Module....

type: imperfection
topic: documentation
type: enhancement
topic: code

is there a possibility that we have an ethernet connection handler? I am working on a project that uses teensy4 and Wiz850 Ethernet module

type: enhancement
topic: code

Helpful library -thanks! Would you consider adding a SSL selector in the calls?

type: enhancement
topic: code

https://github.com/arduino-libraries/ArduinoIoTCloud/pull/243.

type: enhancement
topic: code

This PR adds a class which supports instantiation without SSID and PASS in order to dynamically set them at later time using `setWiFiCredentials(String, String)`. This allows a machine to get...

type: enhancement
topic: code

+ Adds optional argument to WifiConnectionHandler constructor to pass a username + Conditional in .cpp checks if value has been set, calls on .begin or .beginEnterprise accordingly + Critical to...

type: enhancement
topic: code
status: changes requested

Usage: * Uncomment [this line](https://github.com/arduino-libraries/Arduino_ConnectionHandler/blob/ethernet/src/Arduino_ConnectionHandler.h#L116). * Instantiate `Ethernet_ConnectionHandler` in `thing_properties.h` ```C++ byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; EthernetConnectionHandler ArduinoIoTPreferredConnection(mac); ``` * Pass to `ArduinoIoTCloud` (as...

type: enhancement
topic: code

Hi 👋🏻 I have been struggling some time to connect my Arduino MKR1010 to the Arduino IoT Cloud by my university wifi network, which asks a username and password (WPA2...