Closed Moddingear closed 4 months ago
Hi!
Thanks for the corrections.
P.S. Since this repository is a mirror repository on my personal Git server, additions will be made to it, and updated on GitHub. Pull request will be closed with a full merge, but once changes are made to the repository on my Git server it will only be updated as described above. This will happen in a few days. At the moment some changes have been made to the component and it is being tested.
Thank you.
Hello,
Right now this library doesn't support espidf 4.x.x, that is used by Arduino.
Making it compatible with espidf 4.x.x only requires changing
#ifdef CONFIG_IDF_TARGET_ESP8266
by
#if defined(CONFIG_IDF_TARGET_ESP8266) || ESP_IDF_VERSION_MAJOR == 4
Doing so, the library builds without any warnings (Probably because the esp8266 is stuck with espidf4.x.x ?).
That would allow people using Arduino to use the library with espidf WiFi functions. Also, I've read issues #3 and #4