├── .gitignore ├── LICENSE ├── README.md ├── SX127x ├── LoRa.py ├── LoRaArgumentParser.py ├── __init__.py ├── board_config.py └── constants.py ├── VERSION ├── lora_util.py ├── rx_cont.py ├── socket_client.py ├── socket_transceiver.py ├── test_lora.py └── tx_beacon.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeranalytics/pySX127x/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeranalytics/pySX127x/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeranalytics/pySX127x/HEAD/README.md -------------------------------------------------------------------------------- /SX127x/LoRa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeranalytics/pySX127x/HEAD/SX127x/LoRa.py -------------------------------------------------------------------------------- /SX127x/LoRaArgumentParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeranalytics/pySX127x/HEAD/SX127x/LoRaArgumentParser.py -------------------------------------------------------------------------------- /SX127x/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['SX127x'] 2 | -------------------------------------------------------------------------------- /SX127x/board_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeranalytics/pySX127x/HEAD/SX127x/board_config.py -------------------------------------------------------------------------------- /SX127x/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeranalytics/pySX127x/HEAD/SX127x/constants.py -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /lora_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeranalytics/pySX127x/HEAD/lora_util.py -------------------------------------------------------------------------------- /rx_cont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeranalytics/pySX127x/HEAD/rx_cont.py -------------------------------------------------------------------------------- /socket_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeranalytics/pySX127x/HEAD/socket_client.py -------------------------------------------------------------------------------- /socket_transceiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeranalytics/pySX127x/HEAD/socket_transceiver.py -------------------------------------------------------------------------------- /test_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeranalytics/pySX127x/HEAD/test_lora.py -------------------------------------------------------------------------------- /tx_beacon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayeranalytics/pySX127x/HEAD/tx_beacon.py --------------------------------------------------------------------------------