Metadata-Version: 1.1
Name: loranode
Version: 0.0.1
Summary: Python 3 bindings for interfacing with LoRa nodes such as the RN2483.
Home-page: https://github.com/rpp0/python-loranode
Author: Pieter Robyns
Author-email: pieter.robyns@uhasselt.be
License: BSD License
Description: python-loranode
        ===============
        
        Python 3 bindings for interfacing with LoRa nodes such as the RN2483, mDot, iM880A-L, and others. Currently, only the RN2483 modem is supported.
        
        
        Installation
        ------------
        
        Coming soon.
        
        
        Examples
        --------
        
        Joining a network through Activation by Personalization (ABP) and transmitting a message:
        
        ```
        lc = RN2483Controller("/dev/ttyUSB0")
        if lc.join_abp("<your nwkskey>", "<your appskey>", "<your devaddr>"):
            lc.send("0001020304")
        ```
        
Keywords: lora node modem serial interface
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Communications :: Ham Radio
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
