<?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[UHF RFID Unit(JRD-4035), ESP-wroom-32 and Micropython]]></title><description><![CDATA[<p dir="auto">Hello everyone !<br />
I'm trying to use the UHF RFID Unit (JRD-4035) to collect the ID of an UHF tag.<br />
It's linked to an ESP-Wroom-32 chip thanks to UART.<br />
I use a simple code on micropython but I can't read any tag. It returns me nothing.</p>
<pre><code>import machine
import time

print("Lancement du programme")

#uart = UART(1, 115200)                         
#uart.init(115200, bits=8, parity=None, stop=1)

uart = machine.UART(2, baudrate=115200, rx=16, tx=17)

print("UART connexion created")
print("Waiting for a tag")
while True:
    if uart.any():
        data = read_rfid()
        # check if a tag has been detected
        if len(data) &gt; 0:
          print("Tag detected: {}".format(data))
        time.sleep(0.5)
</code></pre>
<p dir="auto">I work with these tag, maybe they are not compatible with this unit : <a href="https://www.amazon.fr/dp/B07B6LSKXG?psc=1&amp;ref=ppx_yo2ov_dt_b_product_details" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.amazon.fr/dp/B07B6LSKXG?psc=1&amp;ref=ppx_yo2ov_dt_b_product_details</a></p>
<p dir="auto">Is there anybody who tried to do something like this ?<br />
If you have example in Arduino, I'm interested to !</p>
<p dir="auto">Thank you and have a nice day.</p>
<p dir="auto">Estelle</p>
]]></description><link>https://community.m5stack.com/topic/5033/uhf-rfid-unit-jrd-4035-esp-wroom-32-and-micropython</link><generator>RSS for Node</generator><lastBuildDate>Sun, 15 Mar 2026 02:52:43 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/5033.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 05 Feb 2023 12:29:26 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to UHF RFID Unit(JRD-4035), ESP-wroom-32 and Micropython on Sun, 05 Feb 2023 15:14:07 GMT]]></title><description><![CDATA[<p dir="auto">Trying to read the UHF RFID without initializing all required parameters first (UHF Zone, Channel etc ..) will give you nothing back.<br />
Try the UIFlow examples for the UHF RFID unit first. There you will find all the parameters you have to set for your country using the unit (<a href="https://www.gs1.org/sites/default/files/docs/epc/uhf_regulations.pdf" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.gs1.org/sites/default/files/docs/epc/uhf_regulations.pdf</a>)</p>
]]></description><link>https://community.m5stack.com/post/20017</link><guid isPermaLink="true">https://community.m5stack.com/post/20017</guid><dc:creator><![CDATA[crami25]]></dc:creator><pubDate>Sun, 05 Feb 2023 15:14:07 GMT</pubDate></item></channel></rss>