Files
rn2483lora/rn2483lora/__init__.py
2019-10-19 21:17:10 +02:00

11 lines
235 B
Python

# -*- coding: utf-8 -*-
"""Module for LoRaWAN chip RN2483."""
from rn2483 import RN2483
__author__ = "Sven Sager"
__copyright__ = "Copyright (C) 2019 Sven Sager"
__license__ = "LGPLv3"
__version__ = "0.1.0"
__all__ = [
"RN2483",
]