11 lines
235 B
Python
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",
|
|
]
|