Coder Social home page Coder Social logo

Comments (3)

sarveshb14 avatar sarveshb14 commented on June 16, 2024 1

Hi @TiDiChi ,

This warning print Haven't to connect to a suitable AP now! is displayed when esp_wifi_sta_get_ap_info(wifi_ap_record_t *ap_info) is called before esp_wifi_connect(void).

You can ignore this message as application (esp-insights in this case) uses this API just to check whether station is connected to Wi-Fi or not.

cc: @vikramdattu

from esp-insights.

TiDiChi avatar TiDiChi commented on June 16, 2024

Hi @TiDiChi ,

This warning print Haven't to connect to a suitable AP now! is displayed when esp_wifi_sta_get_ap_info(wifi_ap_record_t *ap_info) is called before esp_wifi_connect(void).

You can ignore this message as application (esp-insights in this case) uses this API just to check whether station is connected to Wi-Fi or not.

cc: @vikramdattu

Thank you very much. I did it and this spam did not appear!

from esp-insights.

vikramdattu avatar vikramdattu commented on June 16, 2024

@TiDiChi if you're using interface other than Wi-Fi, it is better to use the netif APIs to query if that particular interface is connected or not. That would be much cleaner.

e.g., for ethernet

     esp_netif_t *esp_netif = esp_netif_get_handle_from_ifkey("ETH_DEF"); // ethernet handle
     if (esp_netif_is_netif_up(esp_netif) && esp_netif_get_ip_info(esp_netif, &ip_info) == ESP_OK) {
         // Do your stuff here
     }

Do check esp_netif.h.

from esp-insights.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.