├── .gitignore ├── LICENSE ├── README.md ├── bluetoothd.conf ├── openxshareble ├── __init__.py ├── app.py └── ble │ ├── __init__.py │ ├── attrs.py │ ├── readdata.py │ └── uart.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/openxshareble/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/openxshareble/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/openxshareble/HEAD/README.md -------------------------------------------------------------------------------- /bluetoothd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/openxshareble/HEAD/bluetoothd.conf -------------------------------------------------------------------------------- /openxshareble/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/openxshareble/HEAD/openxshareble/__init__.py -------------------------------------------------------------------------------- /openxshareble/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/openxshareble/HEAD/openxshareble/app.py -------------------------------------------------------------------------------- /openxshareble/ble/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openxshareble/ble/attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/openxshareble/HEAD/openxshareble/ble/attrs.py -------------------------------------------------------------------------------- /openxshareble/ble/readdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/openxshareble/HEAD/openxshareble/ble/readdata.py -------------------------------------------------------------------------------- /openxshareble/ble/uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/openxshareble/HEAD/openxshareble/ble/uart.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openaps/openxshareble/HEAD/setup.py --------------------------------------------------------------------------------