<?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[IR Block not available]]></title><description><![CDATA[<p dir="auto">Hi there,</p>
<p dir="auto">UI Flow and <strong>IR capability</strong> were my reasons for buying a <strong>M5Stack C Plus</strong>.<br />
I would like you to add the missing block in order to finish the hardware list.</p>
<p dir="auto"><img src="https://ibb.co/thJDDP3" alt="image" class=" img-fluid img-markdown" /></p>
<p dir="auto">Thank you<br />
David Blanco</p>
]]></description><link>https://community.m5stack.com/topic/2507/ir-block-not-available</link><generator>RSS for Node</generator><lastBuildDate>Sat, 07 Mar 2026 03:11:57 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/2507.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 23 Nov 2020 07:51:40 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to IR Block not available on Wed, 25 Nov 2020 21:52:23 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/5161">@Dave_White</a></p>
<p dir="auto">in the mean time you could use <code>Advanced</code> - <code>PIN</code> and setup GPIO9 (IR) as <code>pin0 / output</code> and then set <code>pin0</code> LOW to turn the IR LED on.</p>
<p dir="auto">Below MicroPython code lets the IR LED blink:</p>
<pre><code>from m5stack import *
from m5ui import *
from uiflow import *
import machine
import time

setScreenColor(0x111111)
pin0 = machine.Pin(9, mode=machine.Pin.OUT, pull=0x00)
while True:
  pin0.off()
  wait(1)
  pin0.on()
  wait(1)
</code></pre>
<p dir="auto">Cheers<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/10865</link><guid isPermaLink="true">https://community.m5stack.com/post/10865</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Wed, 25 Nov 2020 21:52:23 GMT</pubDate></item></channel></rss>