Avatar for user158605

user158605

Member since Jul 2024 • Last active Nov 2024
  • 3 conversations
  • 26 comments

Most recent activity

  • in ESP32
    Avatar for user158605

    Hello, hello
    Can you provide the latest firmware of ESP32C3 that you are currently using

  • in ESP32
    Avatar for user158605

    Hi, can you share the firmware that your ESP32-C3 WIFI can use

  • in ESP32
    Avatar for user158605

    Yes, we have been testing for a long time; It has indeed been effective; Unable to connect properly

  • in ESP32
    Avatar for user158605

    Thank you for your answer. We have tested it; Command cannot be used correctly
    We also checked the connection information of the router and did not see any devices successfully connected

    var WIFI_NAME = "123";
    var WIFI_OPTIONS = { password : "123456789" };
    
    var wifi = require("Wifi");
    wifi.scan(function (err, networks) {
        console.log(err, networks);
        wifi.connect(WIFI_NAME, WIFI_OPTIONS, function(err) {
          if (err) {
            console.log("Connection error: "+err);
            return;
          }
          console.log("Connected!");
        });
    });
    
    setTimeout(function() {
      console.log(wifi.getState());
    },4000)
    
  • in ESP32
    Avatar for user158605

    Hi, after our detailed testing; Confirm that WiFi is indeed unable to connect properly; Unable to output information after using WiFi connection code; There is no connection record even when checking the router device

    var WIFI_NAME = "123";
    var WIFI_OPTIONS = { password : "123456789" };
    
    var wifi = require("Wifi");
    wifi.scan(function (err, networks) {
        console.log(err, networks);
        wifi.connect(WIFI_NAME, WIFI_OPTIONS, function(err) {
          if (err) {
            console.log("Connection error: "+err);
            return;
          }
          console.log("Connected!");
        });
    });
    
    
  • in ESP32
    Avatar for user158605

    After our verification, the wifi is indeed unable to connect, and there is no callback output when connecting to wifi; It seems that we can only wait for @Gordon to take a look

  • in ESP32
    Avatar for user158605

    Hi, thank you for your answer. However, the WiFi connection code did not trigger a callback

  • in ESP32
    Avatar for user158605

    Thank you for your answer. The main reason is that our company currently chooses the ESP32-C3 board; And currently, ESPRUINO happens to support this board; That's why I chose ESPRUINO.
    ESPRUINO is a very good product, and I hope some experts can take a look at the WiFi issue with C3

Actions