Metadata-Version: 2.1
Name: lora-rn2483
Version: 0.1
Summary: rn2483 library
Home-page: https://github.com/alexantoniades/python-rn2483
Author: Alexandros Antoniades
Author-email: alex.rogue.antoniades@gmail.com
License: Apache License, Version 2.0
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Description-Content-Type: text/markdown
Requires-Dist: pyserial

# Python library and tools for using RN2483 LoRaWAN Transceiver

![pylint Score](https://mperlet.github.io/pybadge/badges/10.00.svg)

| Compatible devices | Build Status |
| ------------------ | ------------ |
| Raspberry Pi 3B+   | [![Build Status](https://travis-ci.org/alexantoniades/python-RN2483.svg?branch=master)](https://travis-ci.org/alexantoniades/python-RN2483) |

## RN2483 to Raspberry Pi GPIO connection

| Pin | RN2483 | to | Pin | Raspberry Pi 3B+ |
| --- | ------ | -- | --- | ---------------- |
| [7] | UART_RX | -> | [14] | UART_TX0 |
| [6] | UART_TX | -> | [15] | UART_RX0 |

## How to use it

When importing library as module, import pyserial and initialize a connection using your assigned serial interface (e.g /dev/ttyUSB0 - in ubuntu).

Install `pyserial`:

```bash
pip3 install pyserial
```

Install `rn2483`:

```bash

git clone https://github.com/alexantoniades/python-RN2483.git
cd python-RN2483
python3 setup.py install
```

Import and initialize modules

```python
import serial
import rn2483

#define serial port and baudrate for rn2583 transceiver
PORT = "/dev/ttyUSB0"
BAUDRATE = 57600

# Initialize serial connection
uart = serial.Serial(PORT, BAUDRATE)
# Initialize transceiver
device = rn2483(connection=uart, debug=True)
# Check if device is initialized
print(device.connection.is_open)
# Check hardware eui
print(device.hardware_eui())
```

Configure LoRaWAN - Authentication By Personalization

```python
device.config_abp(nwskey=NetworkSessionKey, appskey=ApplicationSessionKey, devaddr=DeviceAddress)
```

Configure LoRaWAN - Over The Air Authentication

```python
device.config_otaa(appkey=ApplicationKey, appeui=ApplicationEUI)
```

Send data

```python
device.send("Hello World")
```

Close connection

```python
device.close_connection()
```


