<?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[AWS is unresponsive after Arduino upload]]></title><description><![CDATA[<p dir="auto">Hi, I am new to M5Stack use and I hope to port my existing Arduino code to the Core 2 AWS I just bought. It started up OK when first plugged into my PC and I was able to set the time. But after I compiled and uploaded the suggested test program (print "Hello World"), the screen froze and did not display this text. I powered unit off but now it is unresponsive and it won't do anything.</p>
<p dir="auto">Any suggestions on what to try next?</p>
]]></description><link>https://community.m5stack.com/topic/4114/aws-is-unresponsive-after-arduino-upload</link><generator>RSS for Node</generator><lastBuildDate>Mon, 13 Apr 2026 07:31:20 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/4114.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 08 Mar 2022 13:40:02 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to AWS is unresponsive after Arduino upload on Tue, 08 Mar 2022 20:32:03 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/17895">@SteveM</a></p>
<p dir="auto">you are welcome. Glad to hear you got it working.</p>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/16880</link><guid isPermaLink="true">https://community.m5stack.com/post/16880</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Tue, 08 Mar 2022 20:32:03 GMT</pubDate></item><item><title><![CDATA[Reply to AWS is unresponsive after Arduino upload on Tue, 08 Mar 2022 20:24:33 GMT]]></title><description><![CDATA[<p dir="auto">Felix,<br />
OK, that works.<br />
It prints to the LCD and I get output on the serial monitor.<br />
Thanks for your assistance!<br />
Regards,<br />
Steve</p>
]]></description><link>https://community.m5stack.com/post/16879</link><guid isPermaLink="true">https://community.m5stack.com/post/16879</guid><dc:creator><![CDATA[SteveM]]></dc:creator><pubDate>Tue, 08 Mar 2022 20:24:33 GMT</pubDate></item><item><title><![CDATA[Reply to AWS is unresponsive after Arduino upload on Tue, 08 Mar 2022 19:45:19 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/17895">@SteveM</a></p>
<p dir="auto">try using the <a href="https://github.com/m5stack/M5Core2/blob/master/examples/Basics/helloworld/helloworld.ino" target="_blank" rel="noopener noreferrer nofollow ugc">hello world example</a> from the M5Core2 library.</p>
<p dir="auto">BTW: the <code>Power.begin()</code> function only exists for M5Stack (Basic, Gray, Go, Fire) as it uses a different chipset for battery charging etc. than M5Core2.</p>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/16878</link><guid isPermaLink="true">https://community.m5stack.com/post/16878</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Tue, 08 Mar 2022 19:45:19 GMT</pubDate></item><item><title><![CDATA[Reply to AWS is unresponsive after Arduino upload on Tue, 08 Mar 2022 19:24:52 GMT]]></title><description><![CDATA[<p dir="auto">Thanks for the good ideas!<br />
In fact, I had initially loaded the M5Stack library, not the M5Core2 one.<br />
I have since corrected this.<br />
I do not see any activity in the serial monitor.</p>
<p dir="auto">Below is the test program I uploaded.<br />
I now am getting a compiler error:<br />
'class M5Core2' has no member named 'Power'.<br />
Any suggestions on what's wrong now?</p>
<p dir="auto">#include &lt;M5Core2.h&gt;</p>
<p dir="auto">/* After M5Core is started or reset<br />
the program in the setUp () function will be run, and this part will only be run once.<br />
After M5Core is started or reset, it will start to execute the program in the setup() function, and this part will only be executed once. <em>/<br />
void setup(){<br />
M5.begin(); //Init M5Core. Initialize M5Core<br />
M5.Power.begin(); //Init Power module. Initialize the power module<br />
/</em> Power chip connected to gpio21, gpio22, I2C device<br />
Set battery charging voltage and current<br />
If used battery, please call this function in your project */<br />
M5.Lcd.print("Hello World"); // Print text on the screen (string) Print text on the screen (string)<br />
}</p>
<p dir="auto">/* After the program in setup() runs, it runs the program in loop()<br />
The loop() function is an infinite loop in which the program runs repeatedly<br />
After the program in the setup() function is executed, the program in the loop() function will be executed<br />
The loop() function is an endless loop, in which the program will continue to run repeatedly */<br />
void loop() {</p>
<p dir="auto">}</p>
]]></description><link>https://community.m5stack.com/post/16877</link><guid isPermaLink="true">https://community.m5stack.com/post/16877</guid><dc:creator><![CDATA[SteveM]]></dc:creator><pubDate>Tue, 08 Mar 2022 19:24:52 GMT</pubDate></item><item><title><![CDATA[Reply to AWS is unresponsive after Arduino upload on Tue, 08 Mar 2022 18:45:27 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/17895">@SteveM</a></p>
<p dir="auto">do you see any output in the Arduino Serial Monitor window (under Tools) when you reset your M5Core2? (The reset button is the one next to the SD card slot.)</p>
<p dir="auto">Are you using the proper <a href="https://github.com/m5stack/M5Core2" target="_blank" rel="noopener noreferrer nofollow ugc">library</a> for M5Core2 (which is different from the M5Stack library btw).</p>
<p dir="auto">Could you share the code you flashed onto your M5Core2?</p>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/16876</link><guid isPermaLink="true">https://community.m5stack.com/post/16876</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Tue, 08 Mar 2022 18:45:27 GMT</pubDate></item></channel></rss>