<?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[M5stack programming without Arduino IDE : how ?]]></title><description><![CDATA[<p dir="auto">Hi all,</p>
<p dir="auto">I am lost and I cannot find out how to do.<br />
I have read the short help on this subject but I seem to miss something</p>
<p dir="auto">Your help will be appreciated, TIA</p>
]]></description><link>https://community.m5stack.com/topic/148/m5stack-programming-without-arduino-ide-how</link><generator>RSS for Node</generator><lastBuildDate>Wed, 11 Mar 2026 00:51:47 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/148.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 29 Mar 2018 19:32:02 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Sun, 23 Sep 2018 08:26:24 GMT]]></title><description><![CDATA[<p dir="auto">Here is the article about programming with Arduino IDE<br />
For Windows:<br />
<a href="https://m5stack.readthedocs.io/en/latest/get-started/m5stack_core_get_started_Arduino_Windows.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://m5stack.readthedocs.io/en/latest/get-started/m5stack_core_get_started_Arduino_Windows.html</a><br />
For MacOS:<br />
<a href="https://m5stack.readthedocs.io/en/latest/get-started/m5stack_core_get_started_Arduino_MacOS.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://m5stack.readthedocs.io/en/latest/get-started/m5stack_core_get_started_Arduino_MacOS.html</a></p>
]]></description><link>https://community.m5stack.com/post/1585</link><guid isPermaLink="true">https://community.m5stack.com/post/1585</guid><dc:creator><![CDATA[m5-docs]]></dc:creator><pubDate>Sun, 23 Sep 2018 08:26:24 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Thu, 13 Sep 2018 21:09:06 GMT]]></title><description><![CDATA[<p dir="auto">For reference:</p>
<p dir="auto">Arduino submodule failed. I downloaded the latest, like this (and working):</p>
<p dir="auto">rm -r components/arduino/<br />
git clone <a href="https://github.com/espressif/arduino-esp32.git" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/espressif/arduino-esp32.git</a> components/arduino-esp32<br />
cd components/arduino-esp32 &amp;&amp; git submodule update --init --recursive &amp;&amp; cd ../..</p>
<p dir="auto">Nice if this could be fixed in the code, wtakuo :)</p>
]]></description><link>https://community.m5stack.com/post/1515</link><guid isPermaLink="true">https://community.m5stack.com/post/1515</guid><dc:creator><![CDATA[hetlelid]]></dc:creator><pubDate>Thu, 13 Sep 2018 21:09:06 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Mon, 07 May 2018 20:08:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/351">@wtakuo</a></p>
<p dir="auto">Hi wtakuo,</p>
<p dir="auto">thanks for your work on this…. Nice that M5Stack included your work.</p>
<p dir="auto">Your efforts inspired me to give installation another crack – this time using Linux instead of Windows. MUCH better so far.</p>
<p dir="auto">Just have to determine which serial port is in use… got a long list rather than a defined port when following the ESP-IDF setup guide that outlined how to distinguish the serial port in use. Will follow it up laterz.</p>
]]></description><link>https://community.m5stack.com/post/957</link><guid isPermaLink="true">https://community.m5stack.com/post/957</guid><dc:creator><![CDATA[JJ]]></dc:creator><pubDate>Mon, 07 May 2018 20:08:28 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Mon, 07 May 2018 03:37:25 GMT]]></title><description><![CDATA[<p dir="auto">Now my PR has just been incorporated into the latest commit of M5Stack. So I removed patch.txt.</p>
<p dir="auto">In addition, to tidy up the repository of my fixed M5Stack-IDF, I moved my modifications to <code>components_patch</code> branch. So <code>main</code> branch no longer contains the fix now. If you'd like to try my fixed version of M5Stack-IDF, please do like the following commands.</p>
<pre><code class="language-Bash">git clone --recursive -b components_patch https://github.com/wtakuo/M5Stack-IDF.git
</code></pre>
<p dir="auto">Sorry for inconvenience due to the changes.</p>
]]></description><link>https://community.m5stack.com/post/956</link><guid isPermaLink="true">https://community.m5stack.com/post/956</guid><dc:creator><![CDATA[wtakuo]]></dc:creator><pubDate>Mon, 07 May 2018 03:37:25 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Mon, 07 May 2018 00:10:35 GMT]]></title><description><![CDATA[<p dir="auto">I fixed my patch in <a href="https://github.com/wtakuo/M5Stack-IDF" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/wtakuo/M5Stack-IDF</a>.</p>
<p dir="auto">The path variables in <code>component.mk</code> should look like the following.</p>
<pre><code>COMPONENT_SRCDIRS := src src/utility src/Fonts
COMPONENT_ADD_INCLUDEDIRS := src
</code></pre>
<p dir="auto">As shown in the above code, I added <code>src/Fonts</code> to COMPONENT_SRCDIRS and removed unnecessary <code>"."</code> (current directory) from both paths. Header files in the subdirectories are specified using relative paths from <code>src</code>. So we don't need to add these subdirectories to <code>COMPONENT_ADD_INCLUDEDIRS</code>.</p>
<p dir="auto">Anyway, I sent pull request regarding this fix. If my PR is accepted, the patch file in <a href="https://github.com/wtakuo/M5Stack-IDF" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/wtakuo/M5Stack-IDF</a> will be unnecessary.</p>
]]></description><link>https://community.m5stack.com/post/955</link><guid isPermaLink="true">https://community.m5stack.com/post/955</guid><dc:creator><![CDATA[wtakuo]]></dc:creator><pubDate>Mon, 07 May 2018 00:10:35 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Wed, 02 May 2018 19:21:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/351">@wtakuo</a> Thank you!</p>
]]></description><link>https://community.m5stack.com/post/928</link><guid isPermaLink="true">https://community.m5stack.com/post/928</guid><dc:creator><![CDATA[daslolo]]></dc:creator><pubDate>Wed, 02 May 2018 19:21:44 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Wed, 02 May 2018 12:24:02 GMT]]></title><description><![CDATA[<p dir="auto">My forked and updated version (implementing the setup in my previous post) of M5Stack-IDF template project is available: <a href="https://github.com/wtakuo/M5Stack-IDF" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/wtakuo/M5Stack-IDF</a></p>
]]></description><link>https://community.m5stack.com/post/926</link><guid isPermaLink="true">https://community.m5stack.com/post/926</guid><dc:creator><![CDATA[wtakuo]]></dc:creator><pubDate>Wed, 02 May 2018 12:24:02 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Wed, 02 May 2018 08:57:43 GMT]]></title><description><![CDATA[<p dir="auto">Hello.<br />
I started to use M5Stack a month ago. I tried several simple projects using Arduino IDE. Before moving to ESP-IDF based development, I tried a trivial (hello world) project to test my settings.</p>
<p dir="auto">Unfortunately, current <a href="https://github.com/m5stack/M5Stack-IDF" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/m5stack/M5Stack-IDF</a> looks outdated and incomplete. So I use <a href="https://github.com/m5stack/M5Stack" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/m5stack/M5Stack</a> as an IDF component as well as <a href="https://github.com/espressif/arduino-esp32" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/espressif/arduino-esp32</a> .</p>
<p dir="auto">The project directory looks like the following.</p>
<pre><code>Makefile
sdkconfig
components/
    arduino/            (recursive clone of https://github.com/espressif/arduino-esp32, idf-update branch)
    M5Stack/            (clone of https://github.com/m5stack/M5Stack)
        component.mk    (should be modified. See below)
        ...
main/
    component.mk
    main.cpp            (copy of components/M5Stack/examples/Basics/Hello/Hello.ino)
</code></pre>
<p dir="auto">The only tweak I did is the addition of <code>src/utlitity</code> to the end of these path variables in <code>components/M5Stack/component.mk</code>.</p>
<pre><code>COMPONENT_SRCDIRS := . src src/utility
COMPONENT_ADD_INCLUDEDIRS := . src src/utility
</code></pre>
<p dir="auto">Without this modification, make cannot correctly find the source codes and headers under <code>src/utility</code>.</p>
<p dir="auto">The above setup looks OK and works for other projects.<br />
My questions are:<br />
* Is this a correct setup for ESP-IDF projects? (Is there any better one?)<br />
* Is there any way to avoid the modification of <code>components/M5Stack/component.mk</code>?</p>
<p dir="auto">Thank you for attention.</p>
]]></description><link>https://community.m5stack.com/post/923</link><guid isPermaLink="true">https://community.m5stack.com/post/923</guid><dc:creator><![CDATA[wtakuo]]></dc:creator><pubDate>Wed, 02 May 2018 08:57:43 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Sun, 08 Apr 2018 17:57:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/269">@calin</a>  Great tip re. PlatformIO - will take it for a spin...</p>
]]></description><link>https://community.m5stack.com/post/777</link><guid isPermaLink="true">https://community.m5stack.com/post/777</guid><dc:creator><![CDATA[JJ]]></dc:creator><pubDate>Sun, 08 Apr 2018 17:57:45 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Sun, 08 Apr 2018 17:41:15 GMT]]></title><description><![CDATA[<p dir="auto">The easyest way to start with ESP-IDF is by PlatformIO<br />
That IDE include ESP-IDF, Arduino, Mbed...</p>
]]></description><link>https://community.m5stack.com/post/776</link><guid isPermaLink="true">https://community.m5stack.com/post/776</guid><dc:creator><![CDATA[Calin]]></dc:creator><pubDate>Sun, 08 Apr 2018 17:41:15 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Sat, 31 Mar 2018 21:06:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/249">@jrs</a>   Glad you seem to have it working.</p>
<p dir="auto">Since yours is working, it should be safe to assume your setup is correct:   with M5Stack-IDF installed in the ESP-IDF directory.</p>
<p dir="auto">Thanks for the update....</p>
]]></description><link>https://community.m5stack.com/post/688</link><guid isPermaLink="true">https://community.m5stack.com/post/688</guid><dc:creator><![CDATA[JJ]]></dc:creator><pubDate>Sat, 31 Mar 2018 21:06:12 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Sat, 31 Mar 2018 21:01:32 GMT]]></title><description><![CDATA[<p dir="auto">@jimit<br />
I am running Mac OS</p>
<p dir="auto">In my setup the M5Stack-IDF is in esp-idf.</p>
<p dir="auto">I achieved to run esp-idf hello-world example on the M5Stack but I need to use M5 specific functions, hence the need for M5Stack.h I guess</p>
<h2>The content of hello_world is (sorry indentation is not kept by this site FAQ engine):</h2>
<h2>build/<br />
components/<br />
arduino/<br />
appveyor.yml<br />
boards.txt<br />
<a href="http://component.mk" target="_blank" rel="noopener noreferrer nofollow ugc">component.mk</a><br />
cores/<br />
docs/<br />
Kconfig<br />
libraries/<br />
Makefile.projbuild<br />
package/<br />
package.json<br />
platform.txt<br />
programmers.txt<br />
<a href="http://README.md" target="_blank" rel="noopener noreferrer nofollow ugc">README.md</a><br />
tools/<br />
variants/<br />
main<br />
<a href="http://component.mk" target="_blank" rel="noopener noreferrer nofollow ugc">component.mk</a><br />
hello_world_main.c<br />
Makefile<br />
<a href="http://README.md" target="_blank" rel="noopener noreferrer nofollow ugc">README.md</a><br />
sdkconfig<br />
sdkconfig.old</h2>
<p dir="auto">I'll keep on tomorrow</p>
]]></description><link>https://community.m5stack.com/post/687</link><guid isPermaLink="true">https://community.m5stack.com/post/687</guid><dc:creator><![CDATA[jrs]]></dc:creator><pubDate>Sat, 31 Mar 2018 21:01:32 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Sat, 31 Mar 2018 20:28:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/249">@jrs</a> Hi,</p>
<p dir="auto">I checked my ESP-IDF and i still have setup issues.</p>
<p dir="auto">Under Windows, I have the ESP-IDF directory and the M5Stack-IDF directory both installed in their own separate directory located at:   c:\Users\myusername</p>
<p dir="auto">I set this up many weeks ago so I don't recall what led me to install the directories there or if that is correct.</p>
<p dir="auto">RE - Your last error message: "<em>when trying to use <a href="http://M5.xxx" target="_blank" rel="noopener noreferrer nofollow ugc">M5.xxx</a> functions, the #include &lt;M5Stack.h&gt; yields in a missing M5Stack.h message.</em>"</p>
<p dir="auto">This is where I have that file located:<br />
C:\Users\myusername\M5Stack-IDF\components\M5Stack\src\M5Stack.h</p>
<p dir="auto">I don't suppose it gave you any suggestion where it expected to find this file ?</p>
<p dir="auto">Which OS are you running ?</p>
<p dir="auto">Thanks for adding the links. They will be useful.</p>
]]></description><link>https://community.m5stack.com/post/686</link><guid isPermaLink="true">https://community.m5stack.com/post/686</guid><dc:creator><![CDATA[JJ]]></dc:creator><pubDate>Sat, 31 Mar 2018 20:28:33 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Sat, 31 Mar 2018 19:58:04 GMT]]></title><description><![CDATA[<p dir="auto">@jimit<br />
Hi,</p>
<p dir="auto">Now, make menuconfig has Arduino options.<br />
I had followed<br />
<a href="https://github.com/m5stack/M5Stack-IDF" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/m5stack/M5Stack-IDF</a><br />
which lacks some parts of<br />
<a href="https://github.com/m5stack/M5Stack/blob/master/docs/esp-idf_component.md" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/m5stack/M5Stack/blob/master/docs/esp-idf_component.md</a></p>
<p dir="auto">But now, when trying to use <a href="http://M5.xxx" target="_blank" rel="noopener noreferrer nofollow ugc">M5.xxx</a> functions, the #include &lt;M5Stack.h&gt; yields in a missing M5Stack.h message.</p>
<p dir="auto">I keep searching to solve the issues</p>
]]></description><link>https://community.m5stack.com/post/685</link><guid isPermaLink="true">https://community.m5stack.com/post/685</guid><dc:creator><![CDATA[jrs]]></dc:creator><pubDate>Sat, 31 Mar 2018 19:58:04 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Sat, 31 Mar 2018 10:11:46 GMT]]></title><description><![CDATA[<p dir="auto">@jimit<br />
Hi,<br />
I have re-installed esp-idf and compiling a project for the WRover kit works nicely, as always.<br />
Next, I have cloned M5Stack-IDF but it is not clear in my minds where the directory should go. Should individual components be copied into esp-idf's own components directory ?</p>
<p dir="auto">As per the M5Stack documentation (<a href="https://github.com/m5stack/M5Stack-IDF" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/m5stack/M5Stack-IDF</a>), make menuconfig should have some Arduino option ... but I don't see any<br />
All other compilation issues could stem from this initial installation/configuration mistakes on my side.</p>
<p dir="auto">Any idea ?</p>
<p dir="auto">TIA for your help !</p>
]]></description><link>https://community.m5stack.com/post/683</link><guid isPermaLink="true">https://community.m5stack.com/post/683</guid><dc:creator><![CDATA[jrs]]></dc:creator><pubDate>Sat, 31 Mar 2018 10:11:46 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Fri, 30 Mar 2018 21:38:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/249">@jrs</a></p>
<p dir="auto">When building with <strong>esp-idf</strong> you can use M5Satck just like any other ESP32 development board.<br />
All esp-idf examples, for example, will run on M5Stack same as on any other board.</p>
<p dir="auto">You may have some issues when using C++. Please cunsult the documentation and <a href="https://www.esp32.com" target="_blank" rel="noopener noreferrer nofollow ugc">ESP32 forum</a>. There are many threads related to C++ issues/questions.</p>
]]></description><link>https://community.m5stack.com/post/681</link><guid isPermaLink="true">https://community.m5stack.com/post/681</guid><dc:creator><![CDATA[loboris]]></dc:creator><pubDate>Fri, 30 Mar 2018 21:38:58 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Fri, 30 Mar 2018 20:25:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/249">@jrs</a> No problem.... Yes more details on the errors or maybe mention what you are trying to compile if it is a known program/sketch. Don't think I can be of any further help but with more details someone else may have some answers.</p>
]]></description><link>https://community.m5stack.com/post/680</link><guid isPermaLink="true">https://community.m5stack.com/post/680</guid><dc:creator><![CDATA[JJ]]></dc:creator><pubDate>Fri, 30 Mar 2018 20:25:16 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Fri, 30 Mar 2018 20:16:20 GMT]]></title><description><![CDATA[<p dir="auto">@jimit<br />
Yes, the install was done with git cloning<br />
I'll try again tomorrow to better trace the errors<br />
Thanks for your hints so far, I value your help</p>
]]></description><link>https://community.m5stack.com/post/679</link><guid isPermaLink="true">https://community.m5stack.com/post/679</guid><dc:creator><![CDATA[jrs]]></dc:creator><pubDate>Fri, 30 Mar 2018 20:16:20 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Fri, 30 Mar 2018 20:06:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/249">@jrs</a> Hi,</p>
<p dir="auto">Using ESP-IDF a few weeks ago, I also got errors at compile time but I think they may have been to do with my setup, rather than a report of missing libraries. Haven't had time to revisit.</p>
<p dir="auto">You are probably also familiar with the help at this link:     <a href="https://esp-idf.readthedocs.io/en/latest/" target="_blank" rel="noopener noreferrer nofollow ugc">https://esp-idf.readthedocs.io/en/latest/</a></p>
<p dir="auto">I did a search and found at this link (<a href="https://github.com/espressif/esp-idf/releases/tag/v1.0" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/espressif/esp-idf/releases/tag/v1.0</a>) the following comment:</p>
<p dir="auto"><em>"ESP-IDF can only be used when cloned as git repository. Downloaded .zip archive is not functional because it doesn't contain submodule dependencies."</em></p>
<p dir="auto">Did you install ESP-IDF via ZIP download via the link you mentioned  ?</p>
<p dir="auto">If yes to that and if the statement above is accurate,  then that could be explain it. But there could always be other reasons........</p>
]]></description><link>https://community.m5stack.com/post/678</link><guid isPermaLink="true">https://community.m5stack.com/post/678</guid><dc:creator><![CDATA[JJ]]></dc:creator><pubDate>Fri, 30 Mar 2018 20:06:52 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Fri, 30 Mar 2018 19:45:53 GMT]]></title><description><![CDATA[<p dir="auto">@all, sorry for not mentioning my goal : to code in C/C++ with ESP-IDF framework</p>
<p dir="auto">@jimit<br />
Thank you for your message.<br />
Indeed, I have already written SW fo ESP32 (WRover kit) with ESP-IDF and I would like to do the same with M5stack.<br />
Yes, I have read the following help : <a href="https://github.com/m5stack/M5Stack/blob/master/docs/esp-idf_component.md" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/m5stack/M5Stack/blob/master/docs/esp-idf_component.md</a><br />
but at compile time, some librairis are reported as missing.</p>
<p dir="auto">Did you succeed in this same endeavor ?</p>
<p dir="auto">Rgds</p>
]]></description><link>https://community.m5stack.com/post/677</link><guid isPermaLink="true">https://community.m5stack.com/post/677</guid><dc:creator><![CDATA[jrs]]></dc:creator><pubDate>Fri, 30 Mar 2018 19:45:53 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Fri, 30 Mar 2018 14:22:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/249">@jrs</a> Hi,</p>
<p dir="auto">Which programming environment you are wanting to use ?</p>
<p dir="auto">ESP-IDF  , Micropython , Platformio , Eclipse</p>
<p dir="auto">If new to ESP32 is probably best to start with Arduino and move on to others from there.</p>
<p dir="auto">There are install notes at the link below, but I assume you've already viewed this:<br />
<a href="https://github.com/m5stack/M5Stack" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/m5stack/M5Stack</a></p>
]]></description><link>https://community.m5stack.com/post/676</link><guid isPermaLink="true">https://community.m5stack.com/post/676</guid><dc:creator><![CDATA[JJ]]></dc:creator><pubDate>Fri, 30 Mar 2018 14:22:49 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack programming without Arduino IDE : how ? on Fri, 30 Mar 2018 05:32:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/249">@jrs</a></p>
<p dir="auto">you mean with micropython? you will need to have that firmware flashed on it. i havent done that yet but i remember reading about it on the github i believe</p>
]]></description><link>https://community.m5stack.com/post/675</link><guid isPermaLink="true">https://community.m5stack.com/post/675</guid><dc:creator><![CDATA[m5dude]]></dc:creator><pubDate>Fri, 30 Mar 2018 05:32:53 GMT</pubDate></item></channel></rss>