├── .gitignore ├── LICENSE ├── README.md ├── custom_components └── companion_bt_proxy │ ├── __init__.py │ ├── config_flow.py │ ├── constants.py │ ├── manifest.json │ ├── scanner.py │ ├── sensor.py │ ├── strings.json │ └── translations │ └── en.json └── hacs.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvj/hass_Bluetooth_Proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvj/hass_Bluetooth_Proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # hass_Bluetooth_Proxy -------------------------------------------------------------------------------- /custom_components/companion_bt_proxy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvj/hass_Bluetooth_Proxy/HEAD/custom_components/companion_bt_proxy/__init__.py -------------------------------------------------------------------------------- /custom_components/companion_bt_proxy/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvj/hass_Bluetooth_Proxy/HEAD/custom_components/companion_bt_proxy/config_flow.py -------------------------------------------------------------------------------- /custom_components/companion_bt_proxy/constants.py: -------------------------------------------------------------------------------- 1 | DOMAIN = "companion_bt_proxy" 2 | PLATFORMS = ["sensor"] 3 | -------------------------------------------------------------------------------- /custom_components/companion_bt_proxy/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvj/hass_Bluetooth_Proxy/HEAD/custom_components/companion_bt_proxy/manifest.json -------------------------------------------------------------------------------- /custom_components/companion_bt_proxy/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvj/hass_Bluetooth_Proxy/HEAD/custom_components/companion_bt_proxy/scanner.py -------------------------------------------------------------------------------- /custom_components/companion_bt_proxy/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvj/hass_Bluetooth_Proxy/HEAD/custom_components/companion_bt_proxy/sensor.py -------------------------------------------------------------------------------- /custom_components/companion_bt_proxy/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvj/hass_Bluetooth_Proxy/HEAD/custom_components/companion_bt_proxy/strings.json -------------------------------------------------------------------------------- /custom_components/companion_bt_proxy/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvj/hass_Bluetooth_Proxy/HEAD/custom_components/companion_bt_proxy/translations/en.json -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvj/hass_Bluetooth_Proxy/HEAD/hacs.json --------------------------------------------------------------------------------