<?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[UART over Pyscan pins]]></title><description><![CDATA[<p dir="auto">Hi everyone.</p>
<p dir="auto">I'd like to know whether I can use existing pins on the pyscan board to communicate with another device via UART. Can't find anything on the matter. I would for example like to use the fingerprint reader's RX/TX pins as my UART pins. Currently using it with a SiPy, if that helps.</p>
<p dir="auto">Any help is appreciated. Thanks, Louis</p>
]]></description><link>https://forum.pycom.io/topic/6803/uart-over-pyscan-pins</link><generator>RSS for Node</generator><lastBuildDate>Mon, 11 May 2026 02:40:18 GMT</lastBuildDate><atom:link href="https://forum.pycom.io/topic/6803.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 03 Feb 2021 20:37:43 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to UART over Pyscan pins on Wed, 03 Feb 2021 20:37:43 GMT]]></title><description><![CDATA[<p dir="auto">Hi everyone.</p>
<p dir="auto">I'd like to know whether I can use existing pins on the pyscan board to communicate with another device via UART. Can't find anything on the matter. I would for example like to use the fingerprint reader's RX/TX pins as my UART pins. Currently using it with a SiPy, if that helps.</p>
<p dir="auto">Any help is appreciated. Thanks, Louis</p>
]]></description><link>https://forum.pycom.io/post/36915</link><guid isPermaLink="true">https://forum.pycom.io/post/36915</guid><dc:creator><![CDATA[Louis Henn]]></dc:creator><pubDate>Wed, 03 Feb 2021 20:37:43 GMT</pubDate></item><item><title><![CDATA[Reply to UART over Pyscan pins on Thu, 04 Feb 2021 07:03:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/8010">@Louis-Henn</a> You cannot share UART TX signals, because they are driven actively both high and low. But you can use the pins on the extension connector of Pyscan for UART. See: <a href="https://docs.pycom.io/gitbook/assets/pyscan-pinout.pdf" target="_blank" rel="noopener noreferrer nofollow">https://docs.pycom.io/gitbook/assets/pyscan-pinout.pdf</a>. Using P15 and P19 for UART looks fine, as long as the fingerprint reader is not connected. Just give it a try.</p>
]]></description><link>https://forum.pycom.io/post/36918</link><guid isPermaLink="true">https://forum.pycom.io/post/36918</guid><dc:creator><![CDATA[robert-hh]]></dc:creator><pubDate>Thu, 04 Feb 2021 07:03:51 GMT</pubDate></item><item><title><![CDATA[Reply to UART over Pyscan pins on Thu, 04 Feb 2021 10:06:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/98">@robert-hh</a> thank you. I guess my next question is how would I program UART to work over this pins. Up to know I've used pins 10 and 11 when using pymakr expansion board. How would I code it to be P15/P19. Is it just conncted to GPIO 15/19? Edit: I just saw there is no GPIO 19</p>
]]></description><link>https://forum.pycom.io/post/36920</link><guid isPermaLink="true">https://forum.pycom.io/post/36920</guid><dc:creator><![CDATA[Louis Henn]]></dc:creator><pubDate>Thu, 04 Feb 2021 10:06:56 GMT</pubDate></item><item><title><![CDATA[Reply to UART over Pyscan pins on Thu, 04 Feb 2021 10:10:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/8010">@Louis-Henn</a> Look at the documentation: <a href="https://docs.pycom.io/firmwareapi/pycom/machine/uart/" target="_blank" rel="noopener noreferrer nofollow">https://docs.pycom.io/firmwareapi/pycom/machine/uart/</a><br />
e.g.</p>
<pre><code>from machine import UART
uart = UART(1, baudrate=9600, pins=('P19', 'P15'))
</code></pre>
<p dir="auto">or uart 1. Note, that using uart.init() requires specifying all setting again, so it is more convenient to put all setting in the uart instantiation call.</p>
]]></description><link>https://forum.pycom.io/post/36921</link><guid isPermaLink="true">https://forum.pycom.io/post/36921</guid><dc:creator><![CDATA[robert-hh]]></dc:creator><pubDate>Thu, 04 Feb 2021 10:10:56 GMT</pubDate></item><item><title><![CDATA[Reply to UART over Pyscan pins on Thu, 04 Feb 2021 13:02:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/98">@robert-hh</a> took some debugging, but I did manage to make it work like you said. Thanks a lot!</p>
]]></description><link>https://forum.pycom.io/post/36922</link><guid isPermaLink="true">https://forum.pycom.io/post/36922</guid><dc:creator><![CDATA[Louis Henn]]></dc:creator><pubDate>Thu, 04 Feb 2021 13:02:42 GMT</pubDate></item></channel></rss>