├── .gitattributes ├── LICENSE ├── README.md ├── custom_components └── samsungtv_custom │ ├── __init__.py │ ├── manifest.json │ └── media_player.py ├── hacs.json └── info.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xchwarze/ha-samsungtv-custom/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xchwarze/ha-samsungtv-custom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xchwarze/ha-samsungtv-custom/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/samsungtv_custom/__init__.py: -------------------------------------------------------------------------------- 1 | """The samsungtv component.""" 2 | -------------------------------------------------------------------------------- /custom_components/samsungtv_custom/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xchwarze/ha-samsungtv-custom/HEAD/custom_components/samsungtv_custom/manifest.json -------------------------------------------------------------------------------- /custom_components/samsungtv_custom/media_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xchwarze/ha-samsungtv-custom/HEAD/custom_components/samsungtv_custom/media_player.py -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SamsungTV Custom" 3 | } -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xchwarze/ha-samsungtv-custom/HEAD/info.md --------------------------------------------------------------------------------