├── .gitignore ├── LICENSE ├── README.md ├── forked-daapd ├── README.md ├── __init__.py ├── manifest.json └── media_player.py ├── hampton-bay ├── README.md ├── __init__.py ├── fan.py ├── light.py └── manifest.json ├── nhl ├── README.md ├── __init__.py ├── binary_sensor.py ├── manifest.json └── sensor.py ├── onkyo ├── __init__.py ├── manifest.json └── media_player.py ├── owntone ├── README.md ├── __init__.py ├── config_flow.py ├── const.py ├── manifest.json ├── media_player.py ├── strings.json └── translations │ ├── ca.json │ ├── cs.json │ ├── de.json │ ├── en.json │ ├── es.json │ ├── et.json │ ├── fr.json │ ├── he.json │ ├── hu.json │ ├── id.json │ ├── it.json │ ├── ka.json │ ├── ko.json │ ├── lb.json │ ├── nl.json │ ├── no.json │ ├── no.txt │ ├── pl.json │ ├── pt-BR.json │ ├── pt.json │ ├── ru.json │ ├── sl.json │ ├── sv.json │ ├── tr.json │ ├── uk.json │ └── zh-Hant.json └── usps ├── README.md ├── __init__.py ├── camera.py ├── manifest.json └── sensor.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/README.md -------------------------------------------------------------------------------- /forked-daapd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/forked-daapd/README.md -------------------------------------------------------------------------------- /forked-daapd/__init__.py: -------------------------------------------------------------------------------- 1 | """The forked-daapd component.""" 2 | -------------------------------------------------------------------------------- /forked-daapd/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/forked-daapd/manifest.json -------------------------------------------------------------------------------- /forked-daapd/media_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/forked-daapd/media_player.py -------------------------------------------------------------------------------- /hampton-bay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/hampton-bay/README.md -------------------------------------------------------------------------------- /hampton-bay/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hampton-bay/fan.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hampton-bay/light.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hampton-bay/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/hampton-bay/manifest.json -------------------------------------------------------------------------------- /nhl/README.md: -------------------------------------------------------------------------------- 1 | DOES NOT WORK/UNTESTED 2 | -------------------------------------------------------------------------------- /nhl/__init__.py: -------------------------------------------------------------------------------- 1 | """Unofficial NHL team integration.""" 2 | -------------------------------------------------------------------------------- /nhl/binary_sensor.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nhl/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/nhl/manifest.json -------------------------------------------------------------------------------- /nhl/sensor.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /onkyo/__init__.py: -------------------------------------------------------------------------------- 1 | """The onkyo component.""" 2 | -------------------------------------------------------------------------------- /onkyo/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/onkyo/manifest.json -------------------------------------------------------------------------------- /onkyo/media_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/onkyo/media_player.py -------------------------------------------------------------------------------- /owntone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/README.md -------------------------------------------------------------------------------- /owntone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/__init__.py -------------------------------------------------------------------------------- /owntone/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/config_flow.py -------------------------------------------------------------------------------- /owntone/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/const.py -------------------------------------------------------------------------------- /owntone/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/manifest.json -------------------------------------------------------------------------------- /owntone/media_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/media_player.py -------------------------------------------------------------------------------- /owntone/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/strings.json -------------------------------------------------------------------------------- /owntone/translations/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/ca.json -------------------------------------------------------------------------------- /owntone/translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/cs.json -------------------------------------------------------------------------------- /owntone/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/de.json -------------------------------------------------------------------------------- /owntone/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/en.json -------------------------------------------------------------------------------- /owntone/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/es.json -------------------------------------------------------------------------------- /owntone/translations/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/et.json -------------------------------------------------------------------------------- /owntone/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/fr.json -------------------------------------------------------------------------------- /owntone/translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/he.json -------------------------------------------------------------------------------- /owntone/translations/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/hu.json -------------------------------------------------------------------------------- /owntone/translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/id.json -------------------------------------------------------------------------------- /owntone/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/it.json -------------------------------------------------------------------------------- /owntone/translations/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/ka.json -------------------------------------------------------------------------------- /owntone/translations/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/ko.json -------------------------------------------------------------------------------- /owntone/translations/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/lb.json -------------------------------------------------------------------------------- /owntone/translations/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/nl.json -------------------------------------------------------------------------------- /owntone/translations/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/no.json -------------------------------------------------------------------------------- /owntone/translations/no.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /owntone/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/pl.json -------------------------------------------------------------------------------- /owntone/translations/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/pt-BR.json -------------------------------------------------------------------------------- /owntone/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/pt.json -------------------------------------------------------------------------------- /owntone/translations/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/ru.json -------------------------------------------------------------------------------- /owntone/translations/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/sl.json -------------------------------------------------------------------------------- /owntone/translations/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/sv.json -------------------------------------------------------------------------------- /owntone/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/tr.json -------------------------------------------------------------------------------- /owntone/translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/uk.json -------------------------------------------------------------------------------- /owntone/translations/zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/owntone/translations/zh-Hant.json -------------------------------------------------------------------------------- /usps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/usps/README.md -------------------------------------------------------------------------------- /usps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/usps/__init__.py -------------------------------------------------------------------------------- /usps/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/usps/camera.py -------------------------------------------------------------------------------- /usps/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/usps/manifest.json -------------------------------------------------------------------------------- /usps/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpdowling/custom_components/HEAD/usps/sensor.py --------------------------------------------------------------------------------