LoRaWAN hardware

LoRaWAN Endgeräte

Module

Hier geht es um integrierte LoRaWAN Modems, die meist aus einem LoRa-kompatiblen radio transceiver Modul sowie einem dedizierten Mikroprozessor (command application programming interface processor) bestehen. Auf diesem läuft oft eine proprietäre Firmware, die ihrerseits die Ansteuerung über eine meist ASCII-basierte Kommandosprache via UART Schnittstelle ermöglicht, vgl. Modemsteuerung über AT Befehle o.ä…

Daher muss für das entsprechende Modem nicht unbedingt eine Arduino Bibliothek zur Verfügung stehen, auch wenn es die Ansteuerung durchaus vereinfacht.

Microchip RN2483

Unter der Haube des Microchip RN2483 arbeitet ein PIC Microcontroller mit einem eigenen RF Teil von Microchip. Arduino-kompatible Bibliotheken gibt es per:

The RN2483 has the complete LoRaWAN™ protocol stack on the modem and is easy to configure via simple ASCII commands through the UART, greatly reducing development time. [see also RN2483 command reference user guide und First steps with Microchip RN2483]

Embit EMB-LR1272

Der Embit EMB-LR1272 basiert auf einer Atmel SAMD20 MCU und dem Semtech SX1272 Modul. Arduino-kompatible Bibliotheken gibt es per EmbitLoRaModem.h.

All Embit wireless modules share the embedded microsystems philosophy: the microcontroller inside the module is open to the customer that can develop his own firmware. Alternatively, Embit wireless modules can be employed as flexible modems employing simple AT-like commands over UART by using the Embit Binary Interface (EBI) firmware.

GlobalSat LM-130H

Der GlobalSat LM-130H basiert auf einer nicht genannten low-power MCU, sowie dem Semtech SX1276 Modul. Arduino-kompatible Bibliotheken gibt es per MOSTLoraWAN.h.

All of the LM-130 module’s settings and commands are transmitted over UART by using the ASCII interface, see LM-130 series product specifications.

IMST iM880B-L und iM881A-M

Auf der MCU läuft die “WiMOD-OS” Firmware von IMST, die einen “LoRaWAN protocol stack” über das “WiMOD LoRaWAN HCI Protokoll” via UART oder SPI zur Verfügung stellt:

The standard host controller communication interface is a UART interface. The WiMOD LoRaWAN HCI Protocol uses the SLIP RFC1055 framing protocol when transmitted over asynchronous serial interfaces (UART).

Alternativ gibt es noch die “WiMOD LR (Long Range) Base firmware”:

[…, which] is a collection of functionalities and applications like Radio Link Test, Sensor App., Data Link Service, etc. embedded in our powerful WiMOD OS operating system. It does not include any LoRaWAN functionalities.

Zusatzhinweis: Die open source LMiC Bibliothek von IBM (s.o.) steckt beim “WiMOD-OS” ebenfalls unter der Haube.

  • Das IMST iM880B-L basiert auf einer Cortex-M3 MCU und dem Semtech SX1272 Modul. Es ist auch als IMST WiMOD Shield for Arduino erhältlich.

  • Das IMST iM881A-M basiert auf einer Cortex-M0 MCU und dem Semtech SX1272 Modul.

    It has been specifically designed for battery driven devices.

Passende Softwarebibliotheken finden sich hier:

Eine Arduino-kompatible Bibliothek “WiMOD-ArduinoLib-V1_2_0.zip” gibt es auf der IMST Produktseite zum “IMST WiMOD Shield for Arduino” im Bereich “Download”.

Weitere LoRa und LoRaWAN Module

finden sich bei LORIOT - Hybrid Network Management System for Massive IoT.

Produkte

1 Like

LoRaWAN Infrastruktur

Update: We are also maintaining a collection of LoRaWAN gateways/concentrators at Topics tagged lorawan-gateway.

Concentrators

  • IMST iC880A - LoRaWAN Concentrator

    iC880A is able to receive packets of different end devices send with different spreading factors on up to 8 channels in parallel. […] In combination with an embedded Linux board like Raspberry Pi, Beagle Bone, Banana Pi and the HAL software from LoRa®️ · GitHub, a complete LoRaWAN™ gateway can be setup easily.

LoRaWAN Gateways

  • IMST LoRa Lite Gateway

    LoRa® Lite gateway (LGW) is a demonstration and evaluation platform consisting of the pre-certified concentrator iC880A, a RaspberryPi, a pre-configured SD-card, a power supply, a 868MHz antenna, and a plastic housing. This device enables LoRa® customers to demonstrate and evaluate LoRaWAN® features, and can be easily connect to existing servers (e.g. iot.semtech.com , Loriot). The source code of firmware is provided by the open source github project lora-net (GitHub - Lora-net/lora_gateway: Driver/HAL to build a gateway using a concentrator board based on Semtech SX1301 multi-channel modem and SX1257/SX1255 RF transceivers.).

  • Embit EMB-GW1301-O LoRaWAN™ Gateway

    The EMB-GW1301-O is based on the Semtech SX1301 chipset, allowing to operate on multiple channels at the same time. Thanks to the Semtech SX1301 performances and the efficient Embit RF design, the possible radio ranges are up to 15 km in the countryside and 3 km in urban areas. Network connectivity is provided by the Ethernet interface; optional radio communication interfaces (3G/4G/Wi-Fi) can be included.

    The EMB-GW1301-O can be preloaded with a specific customer’s firmware and configuration or with the most well known LoRaWAN™ network provider configuration.

    The solution includes a full OSS system with access to a cloud service for the provisioning and monitoring of the base station and the end-devices (alarms).

    The system is provided with an IP 67 plastic case for outdoor usage including Power Over Ethernet and GPS.

  • Weitere Plattformen für LoRaWAN gateways finden sich bei https://www.loriot.io/gateways.html.

TTN Gateways

Development devices with STM32WL

List of devices

– via: GitHub - stm32duino/Arduino_Core_STM32: STM32 core support for Arduino

Software support

Examples

Hier noch zwei weitere Fundstücke – LoRaWAN per USB am Rechner.