├── .gitignore ├── LICENSE ├── README.md ├── config-example.json ├── encryption.py ├── load_config.py ├── logger.py ├── main.py ├── message_handler.py ├── mqtt.py ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | config.json 2 | .venv/ 3 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdxlocations/ChannelLink-for-Meshtastic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdxlocations/ChannelLink-for-Meshtastic/HEAD/README.md -------------------------------------------------------------------------------- /config-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdxlocations/ChannelLink-for-Meshtastic/HEAD/config-example.json -------------------------------------------------------------------------------- /encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdxlocations/ChannelLink-for-Meshtastic/HEAD/encryption.py -------------------------------------------------------------------------------- /load_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdxlocations/ChannelLink-for-Meshtastic/HEAD/load_config.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdxlocations/ChannelLink-for-Meshtastic/HEAD/logger.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdxlocations/ChannelLink-for-Meshtastic/HEAD/main.py -------------------------------------------------------------------------------- /message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdxlocations/ChannelLink-for-Meshtastic/HEAD/message_handler.py -------------------------------------------------------------------------------- /mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdxlocations/ChannelLink-for-Meshtastic/HEAD/mqtt.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | meshtastic==2.5.4 2 | paho-mqtt==2.1.0 3 | cryptography==43.0.3 -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdxlocations/ChannelLink-for-Meshtastic/HEAD/utils.py --------------------------------------------------------------------------------