<?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[Core2 : Turn off the backlight]]></title><description><![CDATA[<p dir="auto">Is there a way to turn off the backlight on the Core 2 ? (using the Arduino API or other)</p>
]]></description><link>https://community.m5stack.com/topic/7071/core2-turn-off-the-backlight</link><generator>RSS for Node</generator><lastBuildDate>Wed, 29 Apr 2026 22:36:56 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/7071.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 09 Dec 2024 14:59:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Core2 : Turn off the backlight on Tue, 10 Dec 2024 02:53:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/indianatux" aria-label="Profile: IndianaTux">@<bdi>IndianaTux</bdi></a><br />
this works on my CoreS3, directly turns off LDO2</p>
<pre><code>#include &lt;M5CoreS3.h&gt;
#include &lt;Wire.h&gt;

void setup() {
  // put your setup code here, to run once:
  Wire1.beginTransmission(0x34);
  Wire1.write(0x12);
  Wire1.write(0b01001011);  // LDO2, aka OLED_VDD, off
  Wire1.endTransmission();
}
</code></pre>
]]></description><link>https://community.m5stack.com/post/27406</link><guid isPermaLink="true">https://community.m5stack.com/post/27406</guid><dc:creator><![CDATA[kuriko]]></dc:creator><pubDate>Tue, 10 Dec 2024 02:53:57 GMT</pubDate></item></channel></rss>