<?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[M5stickC Touch Sensing]]></title><description><![CDATA[<p dir="auto">Hello,<br />
I need to read the values from a touch sensing pin.<br />
GPIO33 is touch8 so with arduino code one can use touchread(8)<br />
How can I do this using UIFlow?<br />
Thank you.</p>
]]></description><link>https://community.m5stack.com/topic/2460/m5stickc-touch-sensing</link><generator>RSS for Node</generator><lastBuildDate>Wed, 29 Apr 2026 04:59:48 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/2460.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 11 Nov 2020 21:14:58 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to M5stickC Touch Sensing on Thu, 12 Nov 2020 09:48:50 GMT]]></title><description><![CDATA[<p dir="auto">Thank you!</p>
]]></description><link>https://community.m5stack.com/post/10719</link><guid isPermaLink="true">https://community.m5stack.com/post/10719</guid><dc:creator><![CDATA[xis]]></dc:creator><pubDate>Thu, 12 Nov 2020 09:48:50 GMT</pubDate></item><item><title><![CDATA[Reply to M5stickC Touch Sensing on Wed, 11 Nov 2020 22:16:20 GMT]]></title><description><![CDATA[<p dir="auto">Using <a class="plugin-mentions-user plugin-mentions-a" href="/user/felmue" aria-label="Profile: felmue">@<bdi>felmue</bdi></a>'s example, here is how I did it. For some reason I could only use the pins on the Grove port (32 or 33) of the M5StickC for capacitive touch. The GPIO pins at the top header (0, 23, 36) didn't work for me.  I understand why 23 and 36 don't work (they are not one of the capacitive touch pins on the ESP32), but pin 0 should have worked according to the MicroPython docs.</p>
<p dir="auto"><a href="http://docs.micropython.org/en/v1.11/esp32/quickref.html#capacitive-touch" target="_blank" rel="noopener noreferrer nofollow ugc">http://docs.micropython.org/en/v1.11/esp32/quickref.html#capacitive-touch</a></p>
<p dir="auto"><img src="/assets/uploads/files/1605132647495-screen-shot-2020-11-11-at-5.06.57-pm-resized.png" alt="0_1605132644839_Screen Shot 2020-11-11 at 5.06.57 PM.png" class=" img-fluid img-markdown" /></p>
<p dir="auto"><img src="/assets/uploads/files/1605132867273-img_1729.png" alt="0_1605132863786_IMG_1729.PNG" class=" img-fluid img-markdown" /><br />
<img src="/assets/uploads/files/1605132879427-img_1728.png" alt="0_1605132878725_IMG_1728.PNG" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/10709</link><guid isPermaLink="true">https://community.m5stack.com/post/10709</guid><dc:creator><![CDATA[world101]]></dc:creator><pubDate>Wed, 11 Nov 2020 22:16:20 GMT</pubDate></item><item><title><![CDATA[Reply to M5stickC Touch Sensing on Wed, 11 Nov 2020 21:56:01 GMT]]></title><description><![CDATA[<p dir="auto">Hi @xls</p>
<p dir="auto">try something like this in an <code>Advanced - Execute - Execute code:</code> block:</p>
<pre><code>from machine import Pin, TouchPad
t8 = 0
touch8 = TouchPad(Pin(33))
t8 = touch8.read()
</code></pre>
<p dir="auto">Cheers<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/10708</link><guid isPermaLink="true">https://community.m5stack.com/post/10708</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Wed, 11 Nov 2020 21:56:01 GMT</pubDate></item></channel></rss>