<?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[Matrix M5.dis]]></title><description><![CDATA[<p dir="auto">I just purchased some M5 Atom Matrix devices and I want to start programming the LEDs. Where do I find documentation for the M5.dis API?  The sample code does very little and I can't find any reference to M5.dis in the docs I've been able to find.</p>
]]></description><link>https://community.m5stack.com/topic/2045/matrix-m5-dis</link><generator>RSS for Node</generator><lastBuildDate>Fri, 06 Mar 2026 14:12:21 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/2045.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 14 Jun 2020 13:36:35 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Matrix M5.dis on Tue, 25 May 2021 10:27:23 GMT]]></title><description><![CDATA[<p dir="auto">You can try <strong>neopixel</strong> library (probally from adafruit)</p>
]]></description><link>https://community.m5stack.com/post/13876</link><guid isPermaLink="true">https://community.m5stack.com/post/13876</guid><dc:creator><![CDATA[robalstona]]></dc:creator><pubDate>Tue, 25 May 2021 10:27:23 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix M5.dis on Tue, 25 May 2021 02:24:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/3762">@johnwargo</a> If anyone comes across this and is looking for functioning Arduino/PlatformIO code for the M5 Atom Matrix display, there's some on github here:<br />
<a href="https://github.com/stevesch/atom-waves" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/stevesch/atom-waves</a></p>
]]></description><link>https://community.m5stack.com/post/13873</link><guid isPermaLink="true">https://community.m5stack.com/post/13873</guid><dc:creator><![CDATA[stevesch]]></dc:creator><pubDate>Tue, 25 May 2021 02:24:40 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix M5.dis on Tue, 25 Aug 2020 11:10:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/4037">@felmue</a> aaah, OK, I missed that when I looked at the source. Thanks.</p>
<p dir="auto">I'm loading <code>M5Atom.h</code> and <code>FastLED.h</code> and its just not working for me.</p>
]]></description><link>https://community.m5stack.com/post/9832</link><guid isPermaLink="true">https://community.m5stack.com/post/9832</guid><dc:creator><![CDATA[johnwargo]]></dc:creator><pubDate>Tue, 25 Aug 2020 11:10:07 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix M5.dis on Sat, 22 Aug 2020 07:55:35 GMT]]></title><description><![CDATA[<p dir="auto">Hi John</p>
<p dir="auto">The <code>M5.dis</code> object is defined in <code>M5Atom.h</code> as a member of <code>M5Atom</code> class:</p>
<pre><code>class M5Atom
{
...
    LED_DisPlay dis;
...
}
extern M5Atom M5;
</code></pre>
<p dir="auto">For the M5Atom examples to compile I had to add <code>M5Atom</code> and <code>FastLED</code> libraries to the project. (In PlatformIO I can simply drop the two libaries into the <code>lib</code> directory of the project. Not sure how that works with Arduino IDE, sorry.)</p>
<p dir="auto">Felix</p>
]]></description><link>https://community.m5stack.com/post/9792</link><guid isPermaLink="true">https://community.m5stack.com/post/9792</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Sat, 22 Aug 2020 07:55:35 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix M5.dis on Sat, 22 Aug 2020 03:43:03 GMT]]></title><description><![CDATA[<p dir="auto">Not sure why, but the sketch was crashing for me as well,  until I commented out the include M5Atom.h and m5.begin lines.</p>
]]></description><link>https://community.m5stack.com/post/9791</link><guid isPermaLink="true">https://community.m5stack.com/post/9791</guid><dc:creator><![CDATA[world101]]></dc:creator><pubDate>Sat, 22 Aug 2020 03:43:03 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix M5.dis on Sat, 22 Aug 2020 00:00:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/4037">@felmue</a> Thanks, yes, I have - but that's not documentation for <code>M5.dis</code> object, that's documentation for some methods in a utility library that isn't even loaded by the M5 library.</p>
<pre><code>led-matrix:14:10: error: 'class LED_Display' has no member named 'fillpix'

   M5.dis.fillpix(CRGB::Black);

          ^

exit status 1
'class LED_Display' has no member named 'fillpix'
</code></pre>
<p dir="auto">I'm trying to figure out how to work with the matrix display on the Atom Matrix and I can't find any examples, end to end, that work. I found a reference to <code>M5.dis</code> but I'm just  not seeing anything that references  it or real examples of how to use it.</p>
<p dir="auto">I tried using FastLED which is what the <code>utility/LED_DisPlay.h</code> code uses under the covers, even submitted some PRs today to tighten up that code, but as soon as I make any call to FastLED to update the display or show pixels, the sketch crashes.</p>
]]></description><link>https://community.m5stack.com/post/9788</link><guid isPermaLink="true">https://community.m5stack.com/post/9788</guid><dc:creator><![CDATA[johnwargo]]></dc:creator><pubDate>Sat, 22 Aug 2020 00:00:19 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix M5.dis on Fri, 21 Aug 2020 12:08:27 GMT]]></title><description><![CDATA[<p dir="auto">Hello John</p>
<p dir="auto">Have you seen this? <a href="https://github.com/m5stack/M5Atom#display-api-document" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/m5stack/M5Atom#display-api-document</a></p>
<p dir="auto">Felix</p>
]]></description><link>https://community.m5stack.com/post/9784</link><guid isPermaLink="true">https://community.m5stack.com/post/9784</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Fri, 21 Aug 2020 12:08:27 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix M5.dis on Fri, 21 Aug 2020 11:36:58 GMT]]></title><description><![CDATA[<p dir="auto">Thanks, but that doesn't answer my question. I'm looking at the sample apps and I see references to <code>M5</code> methods, and <code>M5.dis</code> but I cannot find reference documentation for them anywhere.</p>
<p dir="auto">Where are the reference docs for the <code>M5</code> SDK? What are the methods, properties, etc. for the <code>M5.dis</code> object?</p>
]]></description><link>https://community.m5stack.com/post/9783</link><guid isPermaLink="true">https://community.m5stack.com/post/9783</guid><dc:creator><![CDATA[johnwargo]]></dc:creator><pubDate>Fri, 21 Aug 2020 11:36:58 GMT</pubDate></item><item><title><![CDATA[Reply to Matrix M5.dis on Tue, 16 Jun 2020 03:44:37 GMT]]></title><description><![CDATA[<p dir="auto">Hey are you programming in arduino or uiflow? you can check out these videos to get started</p>
<p dir="auto">arduino<br />
<a href="https://www.youtube.com/watch?v=2f4biAfvC_M" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.youtube.com/watch?v=2f4biAfvC_M</a></p>
<p dir="auto">uiflow<br />
<a href="https://www.youtube.com/watch?v=4dr5Y5ssQTk&amp;t=201s" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.youtube.com/watch?v=4dr5Y5ssQTk&amp;t=201s</a></p>
]]></description><link>https://community.m5stack.com/post/9024</link><guid isPermaLink="true">https://community.m5stack.com/post/9024</guid><dc:creator><![CDATA[lukasmaximus]]></dc:creator><pubDate>Tue, 16 Jun 2020 03:44:37 GMT</pubDate></item></channel></rss>