├── .gitignore ├── CREDITS ├── LICENSE ├── README.md ├── adapters.py ├── advertising.py ├── exceptions.py ├── gatt_server.py ├── gatt_server_example.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jumperr-labs/python-gatt-server/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jumperr-labs/python-gatt-server/HEAD/CREDITS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jumperr-labs/python-gatt-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jumperr-labs/python-gatt-server/HEAD/README.md -------------------------------------------------------------------------------- /adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jumperr-labs/python-gatt-server/HEAD/adapters.py -------------------------------------------------------------------------------- /advertising.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jumperr-labs/python-gatt-server/HEAD/advertising.py -------------------------------------------------------------------------------- /exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jumperr-labs/python-gatt-server/HEAD/exceptions.py -------------------------------------------------------------------------------- /gatt_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jumperr-labs/python-gatt-server/HEAD/gatt_server.py -------------------------------------------------------------------------------- /gatt_server_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jumperr-labs/python-gatt-server/HEAD/gatt_server_example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | dbus-python --------------------------------------------------------------------------------