├── README.md ├── configuration.yaml └── custom_components ├── bluetooth_tracker ├── __init__.py ├── device_tracker.py └── manifest.json └── tts_bluetooth_speaker ├── __init__.py ├── manifest.json └── media_player.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkozul/ha-tts-bluetooth-speaker/HEAD/README.md -------------------------------------------------------------------------------- /configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkozul/ha-tts-bluetooth-speaker/HEAD/configuration.yaml -------------------------------------------------------------------------------- /custom_components/bluetooth_tracker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/bluetooth_tracker/device_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkozul/ha-tts-bluetooth-speaker/HEAD/custom_components/bluetooth_tracker/device_tracker.py -------------------------------------------------------------------------------- /custom_components/bluetooth_tracker/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkozul/ha-tts-bluetooth-speaker/HEAD/custom_components/bluetooth_tracker/manifest.json -------------------------------------------------------------------------------- /custom_components/tts_bluetooth_speaker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/tts_bluetooth_speaker/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkozul/ha-tts-bluetooth-speaker/HEAD/custom_components/tts_bluetooth_speaker/manifest.json -------------------------------------------------------------------------------- /custom_components/tts_bluetooth_speaker/media_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkozul/ha-tts-bluetooth-speaker/HEAD/custom_components/tts_bluetooth_speaker/media_player.py --------------------------------------------------------------------------------