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

    M5StickC Plus and Wifi

    Scheduled Pinned Locked Moved M5 Stick/StickC
    2 Posts 2 Posters 8.0k Views
    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 Offline
      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 Offline
        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

        Hello! It looks like you're interested in this conversation, but you don't have an account yet.

        Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

        With your input, this post could be even better 💗

        Register Login
        • First post
          Last post