<?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[Omega2 as a LoRaWAN node]]></title><description><![CDATA[<p dir="auto"><img src="/assets/uploads/files/1529411312833-logo-resized.png" alt="0_1529411145377_logo.png" class="img-responsive img-markdown" /></p>
<p dir="auto">This is work in progress!</p>
<p dir="auto">Repository:</p>
<ul>
<li><a href="https://github.com/maxgerhardt/omega2-lmic-lorawan" rel="nofollow">https://github.com/maxgerhardt/omega2-lmic-lorawan</a></li>
</ul>
<p dir="auto">This project will be about making the Omega2 a LoRaWAN node.</p>
<p dir="auto">LoRa (Long Range) is a radio technology by which extremely long transmission ranges and low power consumption can be achieved at the same time. Depending on the country, it works on license-free bands such as  902-928 MHz (USA), 868MHz (EU) et cetera (<a href="https://www.thethingsnetwork.org/docs/lorawan/frequency-plans.html" rel="nofollow">complete list</a>).</p>
<p dir="auto">The Things Network (TTN) is a open LoRa network that anyone can join and build gateways for to increase its coverage.</p>
<p dir="auto">This means that all you have to do is a LoRa radio and a free account. Compared to GSM, LoRa has:</p>
<ul>
<li>no costly SIM card with monthly payments</li>
<li>much lower power consumption</li>
<li>additional features such as node-to-node communication</li>
</ul>
<p dir="auto">The main usage of LoRa is for small embedded sensors (think: electricity meters, smart city stuff with air quality sensors, temperature sensors, weather stations etc).</p>
<p dir="auto">For the Omega2, this might have a usage where power is available, but not internet coverage over WiFi, Ethernet or GSM. Since it's fairly easy to build a LoRa gateway that can be a several kilometers away from the node, but not easy to build a GSM transmission tower, LoRa can be used to transmit data instead.</p>
<p dir="auto">The Omega2 is also suitable for being a LoRaWAN gateway. Several projects were already presented here, e.g. <a href="https://github.com/plan44/p44ttngw-hardware" rel="nofollow">with a RAK831 gateway module</a> by <a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/1033">@luz</a>.</p>
<p dir="auto">With this code, you can connect a LoRa radio such as the SX1276 or SX1272 (or clones such as the HopeRF RFM95) to the Omeag2 and have it send data over LoRa to the The Things Network.</p>
<p dir="auto">It actually includes 2 things:</p>
<ul>
<li><a href="https://github.com/matthijskooijman/arduino-lmic" rel="nofollow">Arduino-LMIC</a> port to Omega2</li>
<li>Omega2 I2C driver for the <a href="https://www.nxp.com/docs/en/data-sheet/SC18IS602B.pdf" rel="nofollow">NXP SC18IS602B</a> I²C to SPI bridge</li>
</ul>
<p dir="auto">As of now, I still had some problems with receiving data via the Omega2's native SPI bus. But I also had this chip handy and thought it would be a generally useful addition to have an alternative to the Omega2's SPI interface: A pretty simple I2C to SPI bridge. It features 4 slave selects and transfer rates of about 1 Megabit/s (on the SPI side).</p>
<p dir="auto">The wireup is simple:</p>
<ul>
<li>I2C to SPI bridge connected to the Omega2's I2C bus, the bridge's SPI bus to the radio</li>
<li>DIO0 and DIO1 (interrupts for radio events) to GPIO pins of the Omega2</li>
</ul>
<p dir="auto">The used radio is a HopeRF RFM95W chip on a simple breakout board.</p>
<p dir="auto"><img src="https://github.com/maxgerhardt/omega2-lmic-lorawan/raw/master/img/IMG_20180619_135346.jpg" alt class="img-responsive img-markdown" /></p>
<p dir="auto">This setup successfully transmits data to TTN:</p>
<p dir="auto"><img src="https://github.com/maxgerhardt/omega2-lmic-lorawan/raw/master/img/TTN.png" alt class="img-responsive img-markdown" /></p>
<p dir="auto">The repo comes with a command line tool with which data can be sent.</p>
<p dir="auto"><img src="/assets/uploads/files/1529412322100-shell.png" alt="0_1529412156046_shell.png" class="img-responsive img-markdown" /></p>
<p dir="auto">Some things are still in progress like:</p>
<ul>
<li>reception of data has a bug ATM</li>
<li>make radios selectable</li>
<li>make frequency plan selectable (EU868 ATM)</li>
<li>more examples with sensors!</li>
</ul>
<p dir="auto">Things I still have on my bucket list for the Omega2:</p>
<ul>
<li>Implement a 8ch LoRaWAN TTN gateway using 8 single radios</li>
<li>release SC18IS602B library seperately</li>
<li>build a LED matrix with live FFT of audio data</li>
<li>release already built OpenGL 3D code (never had time to write a clean writeup / do code cleanup, from <a href="https://community.onion.io/post/16488" rel="nofollow">https://community.onion.io/post/16488</a>)</li>
<li>other stuff? <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f609.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--wink" title=";)" alt="😉" /></li>
</ul>
<p dir="auto">Regards,<br />
Maximilian</p>
]]></description><link>http://community.onion.io/topic/2982/omega2-as-a-lorawan-node</link><generator>RSS for Node</generator><lastBuildDate>Thu, 14 May 2026 07:06:22 GMT</lastBuildDate><atom:link href="http://community.onion.io/topic/2982.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 19 Jun 2018 12:47:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Omega2 as a LoRaWAN node on Tue, 19 Jun 2018 12:55:39 GMT]]></title><description><![CDATA[<p dir="auto"><img src="/assets/uploads/files/1529411312833-logo-resized.png" alt="0_1529411145377_logo.png" class="img-responsive img-markdown" /></p>
<p dir="auto">This is work in progress!</p>
<p dir="auto">Repository:</p>
<ul>
<li><a href="https://github.com/maxgerhardt/omega2-lmic-lorawan" rel="nofollow">https://github.com/maxgerhardt/omega2-lmic-lorawan</a></li>
</ul>
<p dir="auto">This project will be about making the Omega2 a LoRaWAN node.</p>
<p dir="auto">LoRa (Long Range) is a radio technology by which extremely long transmission ranges and low power consumption can be achieved at the same time. Depending on the country, it works on license-free bands such as  902-928 MHz (USA), 868MHz (EU) et cetera (<a href="https://www.thethingsnetwork.org/docs/lorawan/frequency-plans.html" rel="nofollow">complete list</a>).</p>
<p dir="auto">The Things Network (TTN) is a open LoRa network that anyone can join and build gateways for to increase its coverage.</p>
<p dir="auto">This means that all you have to do is a LoRa radio and a free account. Compared to GSM, LoRa has:</p>
<ul>
<li>no costly SIM card with monthly payments</li>
<li>much lower power consumption</li>
<li>additional features such as node-to-node communication</li>
</ul>
<p dir="auto">The main usage of LoRa is for small embedded sensors (think: electricity meters, smart city stuff with air quality sensors, temperature sensors, weather stations etc).</p>
<p dir="auto">For the Omega2, this might have a usage where power is available, but not internet coverage over WiFi, Ethernet or GSM. Since it's fairly easy to build a LoRa gateway that can be a several kilometers away from the node, but not easy to build a GSM transmission tower, LoRa can be used to transmit data instead.</p>
<p dir="auto">The Omega2 is also suitable for being a LoRaWAN gateway. Several projects were already presented here, e.g. <a href="https://github.com/plan44/p44ttngw-hardware" rel="nofollow">with a RAK831 gateway module</a> by <a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/1033">@luz</a>.</p>
<p dir="auto">With this code, you can connect a LoRa radio such as the SX1276 or SX1272 (or clones such as the HopeRF RFM95) to the Omeag2 and have it send data over LoRa to the The Things Network.</p>
<p dir="auto">It actually includes 2 things:</p>
<ul>
<li><a href="https://github.com/matthijskooijman/arduino-lmic" rel="nofollow">Arduino-LMIC</a> port to Omega2</li>
<li>Omega2 I2C driver for the <a href="https://www.nxp.com/docs/en/data-sheet/SC18IS602B.pdf" rel="nofollow">NXP SC18IS602B</a> I²C to SPI bridge</li>
</ul>
<p dir="auto">As of now, I still had some problems with receiving data via the Omega2's native SPI bus. But I also had this chip handy and thought it would be a generally useful addition to have an alternative to the Omega2's SPI interface: A pretty simple I2C to SPI bridge. It features 4 slave selects and transfer rates of about 1 Megabit/s (on the SPI side).</p>
<p dir="auto">The wireup is simple:</p>
<ul>
<li>I2C to SPI bridge connected to the Omega2's I2C bus, the bridge's SPI bus to the radio</li>
<li>DIO0 and DIO1 (interrupts for radio events) to GPIO pins of the Omega2</li>
</ul>
<p dir="auto">The used radio is a HopeRF RFM95W chip on a simple breakout board.</p>
<p dir="auto"><img src="https://github.com/maxgerhardt/omega2-lmic-lorawan/raw/master/img/IMG_20180619_135346.jpg" alt class="img-responsive img-markdown" /></p>
<p dir="auto">This setup successfully transmits data to TTN:</p>
<p dir="auto"><img src="https://github.com/maxgerhardt/omega2-lmic-lorawan/raw/master/img/TTN.png" alt class="img-responsive img-markdown" /></p>
<p dir="auto">The repo comes with a command line tool with which data can be sent.</p>
<p dir="auto"><img src="/assets/uploads/files/1529412322100-shell.png" alt="0_1529412156046_shell.png" class="img-responsive img-markdown" /></p>
<p dir="auto">Some things are still in progress like:</p>
<ul>
<li>reception of data has a bug ATM</li>
<li>make radios selectable</li>
<li>make frequency plan selectable (EU868 ATM)</li>
<li>more examples with sensors!</li>
</ul>
<p dir="auto">Things I still have on my bucket list for the Omega2:</p>
<ul>
<li>Implement a 8ch LoRaWAN TTN gateway using 8 single radios</li>
<li>release SC18IS602B library seperately</li>
<li>build a LED matrix with live FFT of audio data</li>
<li>release already built OpenGL 3D code (never had time to write a clean writeup / do code cleanup, from <a href="https://community.onion.io/post/16488" rel="nofollow">https://community.onion.io/post/16488</a>)</li>
<li>other stuff? <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f609.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--wink" title=";)" alt="😉" /></li>
</ul>
<p dir="auto">Regards,<br />
Maximilian</p>
]]></description><link>http://community.onion.io/post/17063</link><guid isPermaLink="true">http://community.onion.io/post/17063</guid><dc:creator><![CDATA[Maximilian Gerhardt]]></dc:creator><pubDate>Tue, 19 Jun 2018 12:55:39 GMT</pubDate></item><item><title><![CDATA[Reply to Omega2 as a LoRaWAN node on Sun, 24 Jun 2018 16:22:13 GMT]]></title><description><![CDATA[<p dir="auto"><img src="/assets/uploads/files/1529837727758-logo-resized.png" alt="0_1529837559659_logo.png" class="img-responsive img-markdown" /></p>
<p dir="auto">Welcome back!</p>
<p dir="auto">Repositories:</p>
<ul>
<li>LoRaWAN send tool (LMIC): <a href="https://github.com/maxgerhardt/omega2-lmic-lorawan" rel="nofollow">https://github.com/maxgerhardt/omega2-lmic-lorawan</a></li>
<li>DHT11 demo: <a href="https://github.com/maxgerhardt/omega2-dht11-lora-demo" rel="nofollow">https://github.com/maxgerhardt/omega2-dht11-lora-demo</a></li>
</ul>
<p dir="auto">Considerable progress was made and a demo with AllThingsTalk was added.</p>
<ul>
<li>LoRa reception was fixed (needed <code>LMIC_setClockError()</code>), we can now receive payload</li>
<li>send tool is more configurable
<ul>
<li>spreading factor (SF) selectible (SF7 - SF12)</li>
<li>OTAA (over-the-air-activation) and ABP (activation-by-personalisation) can be used</li>
<li>up/down counters can be set</li>
<li>confirmed uplink messages can be sent</li>
<li>target FPort can be given</li>
<li>US910 and EU868 frequency band versions available</li>
</ul>
</li>
<li>sensor demo with DHT11 temperature &amp; humidity sensor added
<ul>
<li>pushes data to TTN, TTN auto-pushes it to AllThingsTalk backend</li>
</ul>
</li>
</ul>
<p dir="auto">Remaining ToDos:</p>
<ul>
<li>make it work with native SPI interface instead of I2C to SPI bridge
<ul>
<li>SPI data reception on the most current firmware seems to be broken at the moment, still investigating, ticket pending</li>
</ul>
</li>
</ul>
<p dir="auto">The tool's usage was updated to:</p>
<pre><code class="language-sh">Usage: ./lorawan_send --payload PAYLOAD --method METHOD [--dev-adr DEV-ADR] [--nws-key NWS-KEY] 
                     [--apps-key APPS-KEY] [--format FORMAT] [--up-counter UP-COUNTER] [--down-counter DOWN-COUNTER] 
                     [--dev-eui DEV-EUI] [--app-eui APP-EUI] [--app-key APP-KEY] [--spreading-factor SPREADING-FACTOR] 
                     [--fport FPORT] [--confirmed] [--infinite-loop]
</code></pre>
<p dir="auto">This happily receives downlinks and sends uplink messages to TTN:</p>
<p dir="auto"><img src="/assets/uploads/files/1529839129753-confirmed_downlink-resized.png" alt="0_1529838961885_confirmed_downlink.png" class="img-responsive img-markdown" /></p>
<p dir="auto">For the sensor demo, a DHT11 was chosen. I used a premade program from <a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/4225">@h0l0gram</a>: <a href="https://github.com/h0l0gram/omega2-checkHumidity" rel="nofollow">https://github.com/h0l0gram/omega2-checkHumidity</a>.</p>
<p dir="auto">The demo program is simple:</p>
<ul>
<li>invoke the above <code>checkHumidity</code> program and parse its output</li>
<li>invoke <code>lorawan_send</code> with the encoded data</li>
</ul>
<p dir="auto">Managing sensor data with TTN is really easy because it has so called "payload integrations" available. You can choose an IoT platform and have TTN automatically send data to it. I activated the "AllThingsTalk" integration according to <a href="http://docs.allthingstalk.com/networks/use-the-things-network/" rel="nofollow">their documentation</a>.</p>
<p dir="auto"><img src="/assets/uploads/files/1529839388011-integration-resized.png" alt="0_1529839220155_integration.png" class="img-responsive img-markdown" /></p>
<p dir="auto">The basic princinple is:</p>
<ul>
<li>register an account with AllThingsTalk</li>
<li>create a new "Playground"</li>
<li>register a device by adding it via the App-ID (mine: "first-test") and the Device-EUI</li>
<li>setup "assets" (captured data types)
<ul>
<li>setup one called "t" (temperature) and one "h" (humidity)</li>
</ul>
</li>
</ul>
<p dir="auto">You have to send the data "CBOR" (<a href="http://cbor.io/" rel="nofollow">Concise Binary Object Representation</a>) encoded to TTN. For example, the data point <code>{"t":24, "h":40}</code> has the following CBOR encoding:</p>
<p dir="auto"><img src="/assets/uploads/files/1529839668409-cbor_encoding.png" alt="0_1529839500224_cbor_encoding.png" class="img-responsive img-markdown" /></p>
<p dir="auto">The demo program then transmits CBOR encoded humidity and temperature data to TTN</p>
<p dir="auto"><img src="/assets/uploads/files/1529839725002-uplink_ttn-resized.png" alt="0_1529839555681_uplink_ttn.png" class="img-responsive img-markdown" /></p>
<p dir="auto">And all of it is nicely displayed in the dashboard of AllThingsTalk:</p>
<p dir="auto">Devices:</p>
<p dir="auto"><img src="/assets/uploads/files/1529839773357-devices-resized.png" alt="0_1529839605450_devices.png" class="img-responsive img-markdown" /></p>
<p dir="auto">Assets:</p>
<p dir="auto"><img src="/assets/uploads/files/1529839785717-assets_overview.png" alt="0_1529839617931_assets_overview.png" class="img-responsive img-markdown" /></p>
<p dir="auto">Live chart data:</p>
<p dir="auto"><img src="/assets/uploads/files/1529839853743-allthingstalk_data-resized.png" alt="0_1529839685710_allthingstalk_data.png" class="img-responsive img-markdown" /></p>
<p dir="auto">We can also activate "data storage" which will store all sent data up to 30 days. It gives you a nice download button which exports the data to CSV:</p>
<p dir="auto"><img src="/assets/uploads/files/1529839894118-datastorage.png" alt="0_1529839726350_datastorage.png" class="img-responsive img-markdown" /></p>
<p dir="auto">Which you can then pull into Excel. I let this run overnight and this is the result:</p>
<p dir="auto"><img src="/assets/uploads/files/1529839988468-excel_data-resized.png" alt="0_1529839814481_excel_data.png" class="img-responsive img-markdown" /></p>
<p dir="auto">Pretty easy, huh? <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
<p dir="auto"><img src="/assets/uploads/files/1529841047869-img_20180624_134454-resized.jpg" alt="0_1529840861898_IMG_20180624_134454.jpg" class="img-responsive img-markdown" /></p>
<p dir="auto">This concludes the project. I showed you a port of LMIC to the Omega2 with which you can send data over LoRaWAN to TTN, a driver for the NXP SC18IS602B I2C to SPI bridge and a demo program and setup which pushes DHT11 sensor data into an IoT backend. You can now send sensor data (and receive data) over LoRa without the need of an internet connection.</p>
<p dir="auto">Edit: Fritzing schematics + breadboard view added to repo.</p>
<p dir="auto"><img src="/assets/uploads/files/1529857314715-omega_lora_dht11_steckplatine-resized.png" alt="0_1529857123427_omega_lora_dht11_Steckplatine.png" class="img-responsive img-markdown" /></p>
]]></description><link>http://community.onion.io/post/17088</link><guid isPermaLink="true">http://community.onion.io/post/17088</guid><dc:creator><![CDATA[Maximilian Gerhardt]]></dc:creator><pubDate>Sun, 24 Jun 2018 16:22:13 GMT</pubDate></item><item><title><![CDATA[Reply to Omega2 as a LoRaWAN node on Mon, 25 Jun 2018 19:51:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/4683">@Maximilian-Gerhardt</a> Regarding the SPI issue: Have you tried to apply the <a href="https://github.com/plan44/plan44-feed/blob/master/p44ttngw-config/p44build/lede-patches/210-mt7621-spi-intelligent-halfduplex.patch" rel="nofollow">patch from Bernhard Wörndl-Aichriedler <a href="mailto:bwa@xdevelop.at" rel="nofollow">bwa@xdevelop.at</a></a> I used for <a href="https://github.com/plan44/plan44-feed/tree/master/p44ttngw-config" rel="nofollow">my TTN gatway</a>? For SPI communication with the RAK831 it does the trick.</p>
]]></description><link>http://community.onion.io/post/17099</link><guid isPermaLink="true">http://community.onion.io/post/17099</guid><dc:creator><![CDATA[luz]]></dc:creator><pubDate>Mon, 25 Jun 2018 19:51:57 GMT</pubDate></item><item><title><![CDATA[Reply to Omega2 as a LoRaWAN node on Mon, 25 Jun 2018 21:14:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/1033">@luz</a> It would be weird if I needed that patch because I wrote a MCP3008 SPI ADC driver in January 2018 that reads data (on a lower firmware version, but unmodified) and that worked. Something must have re-broken it on 0b188.. <a href="http://community.onion.io/topic/2655/mcp3008-spi-addressing-and-0x00-returned-values/5">http://community.onion.io/topic/2655/mcp3008-spi-addressing-and-0x00-returned-values/5</a></p>
]]></description><link>http://community.onion.io/post/17102</link><guid isPermaLink="true">http://community.onion.io/post/17102</guid><dc:creator><![CDATA[Maximilian Gerhardt]]></dc:creator><pubDate>Mon, 25 Jun 2018 21:14:12 GMT</pubDate></item><item><title><![CDATA[Reply to Omega2 as a LoRaWAN node on Tue, 26 Jun 2018 17:49:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/4683">@Maximilian-Gerhardt</a> wow, great write-up &amp; great project, as usual!!<br />
Btw, we have <a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/4225">@h0l0gram</a> 's DHT program in our repo as well: <a href="https://onion.io/2bt-reading-dht-sensor-data/" rel="nofollow">https://onion.io/2bt-reading-dht-sensor-data/</a></p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/1033">@luz</a> Correct me if I'm wrong, but the patch you linked is more-or-less the same as we use in the Omega2 build system? <a href="https://github.com/OnionIoT/source/blob/lede-17.01/target/linux/ramips/patches-4.4/9999-spi-mt7621.patch" rel="nofollow">https://github.com/OnionIoT/source/blob/lede-17.01/target/linux/ramips/patches-4.4/9999-spi-mt7621.patch</a></p>
]]></description><link>http://community.onion.io/post/17113</link><guid isPermaLink="true">http://community.onion.io/post/17113</guid><dc:creator><![CDATA[Lazar Demin]]></dc:creator><pubDate>Tue, 26 Jun 2018 17:49:52 GMT</pubDate></item><item><title><![CDATA[Reply to Omega2 as a LoRaWAN node on Fri, 08 Feb 2019 21:35:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/4683">@Maximilian-Gerhardt</a> Took a little bit of time to implement native SPI communication. I've confirmed that bi-directional communication between the Omega and LoRA module is working correctly. Just haven't successfully sent any data to TTN as there are surprisingly few gateways in my area.</p>
<p dir="auto">Check it out here: <a href="https://github.com/OnionIoT/omega2-lmic-lorawan" rel="nofollow">https://github.com/OnionIoT/omega2-lmic-lorawan</a></p>
]]></description><link>http://community.onion.io/post/18830</link><guid isPermaLink="true">http://community.onion.io/post/18830</guid><dc:creator><![CDATA[Lazar Demin]]></dc:creator><pubDate>Fri, 08 Feb 2019 21:35:51 GMT</pubDate></item><item><title><![CDATA[Reply to Omega2 as a LoRaWAN node on Fri, 08 Feb 2019 22:35:59 GMT]]></title><description><![CDATA[<p dir="auto">Thanks for all you guys do to constantly keep the Omega development moving forward.</p>
<p dir="auto">This is pretty cool.  I know this is a bit off topic but if a developer wanted to use python/spi-dev, would the Omega2 be able to correctly read the SX1276 config registers with out any data errors?</p>
<p dir="auto">Is this project using hspi or bit-bang spi?</p>
]]></description><link>http://community.onion.io/post/18832</link><guid isPermaLink="true">http://community.onion.io/post/18832</guid><dc:creator><![CDATA[Jeff Seese]]></dc:creator><pubDate>Fri, 08 Feb 2019 22:35:59 GMT</pubDate></item><item><title><![CDATA[Reply to Omega2 as a LoRaWAN node on Sun, 10 Feb 2019 15:13:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/95">@Lazar-Demin</a> Great to see it working. If you need a gateway you can also use a ESP8266 NodeMCU board with another RFM95 module and configure and flash the <a href="https://github.com/things4u/ESP-1ch-Gateway-v5.0" rel="nofollow">https://github.com/things4u/ESP-1ch-Gateway-v5.0</a> firwmare on it, also see <a href="http://things4u.github.io/" rel="nofollow">http://things4u.github.io/</a>. Needs a little bit of fiddling around with the configuration and pinout; Also be aware that the EUI of the TTN gateway must be the one that the firmware spits out on startup (it's made up of the ESP8266's MAC address and two 0xff in the middle).</p>
]]></description><link>http://community.onion.io/post/18845</link><guid isPermaLink="true">http://community.onion.io/post/18845</guid><dc:creator><![CDATA[Maximilian Gerhardt]]></dc:creator><pubDate>Sun, 10 Feb 2019 15:13:34 GMT</pubDate></item></channel></rss>