├── .gitignore ├── LICENSE ├── README.md ├── aprs_comm.py ├── bt_pair.exp ├── commands.py ├── config.py ├── database.py ├── example_config.ini ├── main.py ├── requirements.txt └── rfcomm_bind.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-APRS-BBS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-APRS-BBS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-APRS-BBS/HEAD/README.md -------------------------------------------------------------------------------- /aprs_comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-APRS-BBS/HEAD/aprs_comm.py -------------------------------------------------------------------------------- /bt_pair.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-APRS-BBS/HEAD/bt_pair.exp -------------------------------------------------------------------------------- /commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-APRS-BBS/HEAD/commands.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-APRS-BBS/HEAD/config.py -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-APRS-BBS/HEAD/database.py -------------------------------------------------------------------------------- /example_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-APRS-BBS/HEAD/example_config.ini -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-APRS-BBS/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | aprs3 -------------------------------------------------------------------------------- /rfcomm_bind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-APRS-BBS/HEAD/rfcomm_bind.sh --------------------------------------------------------------------------------