<?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[COLOR_TCS3472 on Atom Lite cannot find sensor]]></title><description><![CDATA[<p dir="auto">When I use the <a href="https://github.com/m5stack/M5Stack/blob/master/examples/Unit/COLOR_TCS3472/COLOR_TCS3472.ino" target="_blank" rel="noopener noreferrer nofollow ugc">example sketch for the color_tcs3472 sensor</a> on my Atom Lite the serial output shows:</p>
<p dir="auto"><em><strong>No TCS34725 found ... check your connections</strong></em></p>
<p dir="auto">The sensor is working when I use the same sketch with an Arduino Uno so the problem isn't in the sensor.</p>
<p dir="auto">Does anyone have any suggestions on how to troubleshoot this?</p>
<p dir="auto">Best regards,<br />
Alban</p>
]]></description><link>https://community.m5stack.com/topic/3024/color_tcs3472-on-atom-lite-cannot-find-sensor</link><generator>RSS for Node</generator><lastBuildDate>Thu, 14 May 2026 22:13:22 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/3024.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 01 Mar 2021 10:47:55 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to COLOR_TCS3472 on Atom Lite cannot find sensor on Mon, 01 Mar 2021 19:59:18 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="plugin-mentions-user plugin-mentions-a" href="/user/alban_t" aria-label="Profile: Alban_T">@<bdi>Alban_T</bdi></a></p>
<p dir="auto">the sketch you linked is for M5Stack devices. M5Atom Lite is a bit different. For instance:</p>
<ul>
<li>I assume you modified <code>#include &lt;M5Stack.h&gt;</code> to <code>#include &lt;M5Atom.h&gt;</code>.</li>
<li>did you also adapt the <code>M5.begin()</code> call to enable I2C? E.g. <code>M5.begin(true, true, true)</code> - the second <code>true</code> enables I2C on Atom Lite.</li>
<li>is your sensor connected to the proper GPIOs? E.g. SDL - GPIO25 and SCL - GPIO21.</li>
</ul>
<p dir="auto">excerpt from <code>M5Atom.cpp</code> as reference:</p>
<pre><code>void M5Atom::begin(bool SerialEnable , bool I2CEnable , bool DisplayEnable )
{
	if( _isInited ) return;

	_isInited = true;

	if( I2CEnable )
	{
		Wire.begin(25,21,10000);
	}

</code></pre>
<p dir="auto">Hope this helps. If not, feel free to post the full sketch.</p>
<p dir="auto">Good luck.<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/12740</link><guid isPermaLink="true">https://community.m5stack.com/post/12740</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Mon, 01 Mar 2021 19:59:18 GMT</pubDate></item></channel></rss>