<?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 (JRD4035) on M5Core2]]></title><description><![CDATA[<p dir="auto">I was wondering if the examples from the M5Stack Repository will be re-released on the M5Core2 repository. Unfortunately I am not able to get my JRD4035 running on a M5Core2. Anybody maybe has experience in this or info when examples will be released?</p>
<p dir="auto">Best wishes<br />
Tobias H.</p>
]]></description><link>https://community.m5stack.com/topic/3786/uhf-rfid-unit-jrd4035-on-m5core2</link><generator>RSS for Node</generator><lastBuildDate>Tue, 28 Apr 2026 23:04:38 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/3786.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 28 Nov 2021 21:59:27 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to UHF RFID Unit (JRD4035) on M5Core2 on Tue, 29 Nov 2022 13:20:22 GMT]]></title><description><![CDATA[<p dir="auto">Hello everyone<br />
Nobody with M5Core 2 and UHF RFID UNIT (JRD4035) running properly?<br />
Cheers.</p>
]]></description><link>https://community.m5stack.com/post/19409</link><guid isPermaLink="true">https://community.m5stack.com/post/19409</guid><dc:creator><![CDATA[Bat21]]></dc:creator><pubDate>Tue, 29 Nov 2022 13:20:22 GMT</pubDate></item><item><title><![CDATA[Reply to UHF RFID Unit (JRD4035) on M5Core2 on Tue, 29 Nov 2022 13:14:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kylebuttress" aria-label="Profile: kylebuttress">@<bdi>kylebuttress</bdi></a><br />
Hello again,<br />
This is the information that I visualize from the EPC.<br />
[From M5Burner] Com22 Opened.</p>
<h2>30395D<br />
-30</h2>
<p dir="auto">On the Core 2 screen, it is 30395d.<br />
When the complete EPC of the label is 30395DFA835F7E4000466D16<br />
I don't understand anything, both in the Core2 and at the Atom.</p>
<p dir="auto">Cheers</p>
]]></description><link>https://community.m5stack.com/post/19360</link><guid isPermaLink="true">https://community.m5stack.com/post/19360</guid><dc:creator><![CDATA[Bat21]]></dc:creator><pubDate>Tue, 29 Nov 2022 13:14:01 GMT</pubDate></item><item><title><![CDATA[Reply to UHF RFID Unit (JRD4035) on M5Core2 on Wed, 23 Nov 2022 13:27:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kylebuttress" aria-label="Profile: kylebuttress">@<bdi>kylebuttress</bdi></a> Hello,<br />
Thanks for your example, installed vScode IDE with python and program your example.<br />
It works the same as in Fixow and Arduino. It only shows 6 EPC characters and only reads some EPCs.<br />
It is very strange that with all the examples on different platforms the same thing happens.</p>
<p dir="auto">Thanks for your help,</p>
]]></description><link>https://community.m5stack.com/post/19358</link><guid isPermaLink="true">https://community.m5stack.com/post/19358</guid><dc:creator><![CDATA[Bat21]]></dc:creator><pubDate>Wed, 23 Nov 2022 13:27:59 GMT</pubDate></item><item><title><![CDATA[Reply to UHF RFID Unit (JRD4035) on M5Core2 on Sun, 20 Nov 2022 22:06:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bat21" aria-label="Profile: Bat21">@<bdi>Bat21</bdi></a></p>
<p dir="auto">Not sure if this will help.</p>
<p dir="auto">I made a quick reader  based on a [project I'm working on this also works on m5Paper as well it's nothing complex simple read and display, this is on a Basic Core unit<br />
A quick video showing it working<br />
<a href="https://youtu.be/qvtr6Vy-HwY" target="_blank" rel="noopener noreferrer nofollow ugc">https://youtu.be/qvtr6Vy-HwY</a></p>
<p dir="auto">The Tags I use are these ones</p>
<p dir="auto"><img src="https://firebasestorage.googleapis.com/v0/b/prjmgnt-caeef.appspot.com/o/IMG_2634.jpeg?alt=media&amp;token=63017c6e-6a97-4aa0-8eba-bb32b3e3ac63" alt="Tag 1" class=" img-fluid img-markdown" /><br />
<img src="https://firebasestorage.googleapis.com/v0/b/prjmgnt-caeef.appspot.com/o/IMG_2635.jpeg?alt=media&amp;token=3698cee3-1078-4b9f-9d3f-a8d2514a21aa" alt="Tag 2" class=" img-fluid img-markdown" /></p>
<p dir="auto">make sure the port is correct otherwise the bytes out of range error pops up<br />
I hope it helps</p>
<pre><code>from m5stack import *
from m5ui import *
from uiflow import *
import unit


setScreenColor(0x222222)
uhf_rfid_0 = unit.get(unit.UHF_RFID, unit.PORTA)

uhf_rfid_0.set_region(uhf_rfid_0.REGIN_US)
uhf_rfid_0.automatic_freq_hopping(0xFF)
uhf_rfid_0.set_channel_freq(924.25)
epc_bool = 0
uhf_rfid_0.set_select_mode(0x01)




label0 = M5TextBox(128, 59, "Tag #", lcd.FONT_Default, 0xFFFFFF, rotate=0)
label1 = M5TextBox(22, 106, "waiting ... ", lcd.FONT_Default, 0xFFFFFF, rotate=0)


while True:
        # while not temp:
        temp = uhf_rfid_0.single_polling()

        if temp:
            # label10.setText(str(temp))
            print("-----")
            print(temp[0])
            print(temp[1])
            print("-----")
            label1.setText(temp[0])
        wait(.5)

</code></pre>
]]></description><link>https://community.m5stack.com/post/19344</link><guid isPermaLink="true">https://community.m5stack.com/post/19344</guid><dc:creator><![CDATA[kylebuttress]]></dc:creator><pubDate>Sun, 20 Nov 2022 22:06:18 GMT</pubDate></item><item><title><![CDATA[Reply to UHF RFID Unit (JRD4035) on M5Core2 on Sun, 20 Nov 2022 16:42:41 GMT]]></title><description><![CDATA[<p dir="auto">@tobias-h said in <a href="/post/15651">UHF RFID Unit (JRD4035) on M5Core2</a>:</p>
<blockquote>
<p dir="auto">I was wondering if the examples from the M5Stack Repository will be re-released on the M5Core2 repository. Unfortunately I am not able to get my JRD4035 running on a M5Core2. Anybody maybe has experience in this or info when examples will be released?</p>
<p dir="auto">Best wishes<br />
Tobias H.</p>
</blockquote>
<p dir="auto">Hello,<br />
What examples is using, I can't make any.<br />
Thank you.</p>
]]></description><link>https://community.m5stack.com/post/19341</link><guid isPermaLink="true">https://community.m5stack.com/post/19341</guid><dc:creator><![CDATA[Bat21]]></dc:creator><pubDate>Sun, 20 Nov 2022 16:42:41 GMT</pubDate></item><item><title><![CDATA[Reply to UHF RFID Unit (JRD4035) on M5Core2 on Mon, 29 Nov 2021 17:54:05 GMT]]></title><description><![CDATA[<p dir="auto">Hello @tobias-h</p>
<p dir="auto">glad to hear it works now. Thank you for reporting back. Have fun!</p>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/15657</link><guid isPermaLink="true">https://community.m5stack.com/post/15657</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Mon, 29 Nov 2021 17:54:05 GMT</pubDate></item><item><title><![CDATA[Reply to UHF RFID Unit (JRD4035) on M5Core2 on Mon, 29 Nov 2021 15:39:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/felmue" aria-label="Profile: felmue">@<bdi>felmue</bdi></a> thank you very much. it finally works now.</p>
]]></description><link>https://community.m5stack.com/post/15656</link><guid isPermaLink="true">https://community.m5stack.com/post/15656</guid><dc:creator><![CDATA[tobias.h]]></dc:creator><pubDate>Mon, 29 Nov 2021 15:39:51 GMT</pubDate></item><item><title><![CDATA[Reply to UHF RFID Unit (JRD4035) on M5Core2 on Mon, 29 Nov 2021 08:32:39 GMT]]></title><description><![CDATA[<p dir="auto">Hello @tobias-h</p>
<p dir="auto">you could try to modify the M5Stack example yourself.</p>
<p dir="auto">Replace below line:</p>
<pre><code>#include &lt;M5Stack.h&gt;
</code></pre>
<p dir="auto">with</p>
<pre><code>#include &lt;M5Core2.h&gt;
</code></pre>
<p dir="auto">and below line:</p>
<pre><code>Serial2.begin(115200, SERIAL_8N1, 16, 17);//16.17
</code></pre>
<p dir="auto">with this line if you connect the unit to <strong>port A</strong> (found on M5Core2):</p>
<pre><code>Serial2.begin(115200, SERIAL_8N1, 33, 32);
</code></pre>
<p dir="auto">or this line if you connect the unit to <strong>port C</strong> (found on <a href="https://shop.m5stack.com/collections/m5-modules/products/m5go-battery-bottom2-for-core2-only" target="_blank" rel="noopener noreferrer nofollow ugc">M5GO Battery Bottom2</a>):</p>
<pre><code>Serial2.begin(115200, SERIAL_8N1, 13, 14);
</code></pre>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/15653</link><guid isPermaLink="true">https://community.m5stack.com/post/15653</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Mon, 29 Nov 2021 08:32:39 GMT</pubDate></item></channel></rss>