<?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[COM GPS with COM LoRaWAN module]]></title><description><![CDATA[<p dir="auto">I'm wanting to build a mapper for the <a href="https://helium.com" target="_blank" rel="noopener noreferrer nofollow ugc">Helium Network</a> (its like TTN).  Basically, I want a Core (or Core 2) utilizing a COM.GPS and a COM.LORAWan 915.  My hope would be that it could be configured to work without external power (seems like the Core 2 requires that the GSP, so it may be out of the running).</p>
<p dir="auto">Has anyone got a COM.GPS working with a COM.LoRaWAN module?  If so, can you explain or share your switch settings?  Also, is this possible using UIFlow?</p>
<p dir="auto">I've used EasyLoader to flash the COM.GPS sample code but all I get is "INVALID" responses on every field.  I am getting a flashing blue light on the GPS module and I think I have the switches set to 5/13 (which appears to be the default setting for the Arduino sketch).</p>
<p dir="auto">Any help would be greatly appreciated.</p>
<p dir="auto">Here's a picture of the switch settings I currently have on the GPS: <a href="https://photos.app.goo.gl/oKvUyTe9gzCbrAxv6" target="_blank" rel="noopener noreferrer nofollow ugc">https://photos.app.goo.gl/oKvUyTe9gzCbrAxv6</a></p>
]]></description><link>https://community.m5stack.com/topic/3416/com-gps-with-com-lorawan-module</link><generator>RSS for Node</generator><lastBuildDate>Wed, 29 Apr 2026 03:16:26 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/3416.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 28 Jun 2021 21:01:47 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to COM GPS with COM LoRaWAN module on Mon, 28 Jun 2021 22:19:59 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="plugin-mentions-user plugin-mentions-a" href="/user/arkieguy" aria-label="Profile: arkieguy">@<bdi>arkieguy</bdi></a></p>
<p dir="auto">if you use an M5Stack 5 / 13 should work.</p>
<p dir="auto">However if you use an M5Core2 you'll need to change the DIP switches in the COM.GPS to 16 / 17. The reason for that is that the Arduino code for M5Core2 uses GPIO 13 / 14 which translate to 16 / 17 in the module.</p>
<p dir="auto">from <a href="https://github.com/m5stack/M5Stack/blob/master/examples/Modules/COM_GPS/COM_GPS.ino" target="_blank" rel="noopener noreferrer nofollow ugc">Arduino example</a> for M5Stack:</p>
<pre><code>Serial2.begin(9600, SERIAL_8N1, 5, 13);
</code></pre>
<p dir="auto">from <a href="https://github.com/m5stack/M5Core2/blob/master/examples/Module/COMX_GPS/COMX_GPS.ino" target="_blank" rel="noopener noreferrer nofollow ugc">Arduino example</a> for M5Core2:</p>
<pre><code>Serial2.begin(9600, SERIAL_8N1, 13, 14);
</code></pre>
<p dir="auto">Please also check this <a href="https://www.gwendesign.com/kb/m5stack/m5core2/#m5core2-bus-and-gpios-compared-to-m5stack" target="_blank" rel="noopener noreferrer nofollow ugc">GPIO comparison sheet</a> I've put together a while ago.</p>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/14267</link><guid isPermaLink="true">https://community.m5stack.com/post/14267</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Mon, 28 Jun 2021 22:19:59 GMT</pubDate></item></channel></rss>