<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[M5StickC Plus and Wifi]]></title><description><![CDATA[<p dir="auto">Is there a known issue with Wifi when using the Ardunio IDE?</p>
<p dir="auto">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.</p>
<p dir="auto">The code in questions works fine on a M5StickC device so it would appear to be something specific to the Plus devices.</p>
<p dir="auto">If you have any ideas on how to isolate this issue we would be appreciative.</p>
]]></description><link>https://community.m5stack.com/topic/2665/m5stickc-plus-and-wifi</link><generator>RSS for Node</generator><lastBuildDate>Thu, 14 May 2026 21:41:33 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/2665.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 29 Dec 2020 01:03:58 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to M5StickC Plus and Wifi on Tue, 29 Dec 2020 12:32:11 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="plugin-mentions-user plugin-mentions-a" href="/user/helo-head" aria-label="Profile: helo-head">@<bdi>helo-head</bdi></a></p>
<p dir="auto">could you share your code (or at least the WiFi relevant part)?</p>
<p dir="auto">Anyhow, below is how I can successfully connect my M5StickC Plus to WiFi:</p>
<pre><code>#include "M5StickCPlus.h"
#include &lt;WiFi.h&gt;

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() {
}
</code></pre>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/11413</link><guid isPermaLink="true">https://community.m5stack.com/post/11413</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Tue, 29 Dec 2020 12:32:11 GMT</pubDate></item></channel></rss>