🤖Have you ever tried Chat.M5Stack.com before asking??😎
    M5Stack Community
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    M5StickC Plus and Wifi

    M5 Stick/StickC
    2
    2
    7.3k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • H
      helo-head
      last edited by

      Is there a known issue with Wifi when using the Ardunio IDE?

      Using the Arduino IDE with the latest stable ESP32 Package (version 1.0.4) and the current version of M5StickC-Plus library (version 0.1) I have been struggling to determine why wifi does not work on M5StickC-Plus devices. In each case WiFi.status() returns WL_NO_SHIELD. I tested the code on two different devices and I have noted others reporting the same issue.

      The code in questions works fine on a M5StickC device so it would appear to be something specific to the Plus devices.

      If you have any ideas on how to isolate this issue we would be appreciative.

      1 Reply Last reply Reply Quote 0
      • felmueF
        felmue
        last edited by

        Hello @helo-head

        could you share your code (or at least the WiFi relevant part)?

        Anyhow, below is how I can successfully connect my M5StickC Plus to WiFi:

        #include "M5StickCPlus.h"
        #include <WiFi.h>
        
        const char* ssid       = "ssid";
        const char* password   = "password";
        
        void setup() {
          M5.begin(true, true, true);
        
          Serial.printf("Connecting to %s ", ssid);
          WiFi.begin(ssid, password);
          while (WiFi.status() != WL_CONNECTED) {
              delay(500);
              Serial.print(".");
          }
          Serial.println(" CONNECTED");
        }
        
        void loop() {
        }
        

        Thanks
        Felix

        GPIO translation table M5Stack / M5Core2
        Information about various M5Stack products.
        Code examples

        1 Reply Last reply Reply Quote 0
        • First post
          Last post