-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WiFiNINA #66
Comments
As written in #46, WiFiNINA.h is a low-level library, similar to WifiClient for ESP. So, it is technically possible to add it, but not easily. I'm also not sure about memory (32KB for Arm SAMD21), but it could be ok. Anyway, any PR is welcomed. |
I would like to use a Nano 33 IoT which used a WiFiNINA. I only want to query the Influx database for the last value when the device resets. Is there any possibility to support this configuration? |
@vlastahajek I guess you are sick of reading these /me too/ posts. Instead i am asking you to give a quick feasibility estimation of using the arduino-libraries/ArduinoHttpClient library, which has support for WiFiNINA. In comparison to the ESP* SDK, it is missing support for SSL, In terms of how to implement this probably means to add another layer #if/#endif macros to have HTTPService call into the HTTPClient from ArduinoHttpClient (headers)? Is that correct? |
@coroa, As I already separated all HTTP related code to HTTPService to decouple InfluxDB client from HTTPClient, I will do additional small refactor to allow easy extending this library to other HTTP Clients this week. |
@vlastahajek I was looking to use this with a Arduino Nano RP2040 which has ARM Cortex M0+ and also uses WiFi NINA for the Wireless I wanted to understand if you had any progress since November before I investigate alternatives(would write to MQTT and read from python (on linux ) to send to influxdb) If I can help in any way please advise (testing, documenting etc) I am not really great at coding production and /or low level software like this |
The feat/allow-extending branch of this repository has 90% working code for WiFiNINA. HTTP read timeouts were for some reason not working. |
Hello is it possible to support Arduino library WiFiNINA.h in place of ESP?
The text was updated successfully, but these errors were encountered: