├── .devcontainer.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature_request.yml ├── dependabot.yml └── workflows │ ├── hassfest.yaml │ ├── release.yml │ ├── ruff.yml │ └── validate.yml ├── .gitignore ├── .ruff.toml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config └── configuration.yaml ├── custom_components └── fyta │ ├── __init__.py │ ├── binary_sensor.py │ ├── config_flow.py │ ├── const.py │ ├── coordinator.py │ ├── entity.py │ ├── icons.json │ ├── image.py │ ├── manifest.json │ ├── sensor.py │ ├── strings.json │ └── translations │ ├── de.json │ └── en.json ├── hacs.json ├── requirements.txt └── scripts ├── develop ├── lint └── setup /.devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/.devcontainer.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/hassfest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/.github/workflows/hassfest.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/.github/workflows/ruff.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/.ruff.toml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/README.md -------------------------------------------------------------------------------- /config/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/config/configuration.yaml -------------------------------------------------------------------------------- /custom_components/fyta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/custom_components/fyta/__init__.py -------------------------------------------------------------------------------- /custom_components/fyta/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/custom_components/fyta/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/fyta/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/custom_components/fyta/config_flow.py -------------------------------------------------------------------------------- /custom_components/fyta/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/custom_components/fyta/const.py -------------------------------------------------------------------------------- /custom_components/fyta/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/custom_components/fyta/coordinator.py -------------------------------------------------------------------------------- /custom_components/fyta/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/custom_components/fyta/entity.py -------------------------------------------------------------------------------- /custom_components/fyta/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/custom_components/fyta/icons.json -------------------------------------------------------------------------------- /custom_components/fyta/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/custom_components/fyta/image.py -------------------------------------------------------------------------------- /custom_components/fyta/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/custom_components/fyta/manifest.json -------------------------------------------------------------------------------- /custom_components/fyta/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/custom_components/fyta/sensor.py -------------------------------------------------------------------------------- /custom_components/fyta/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/custom_components/fyta/strings.json -------------------------------------------------------------------------------- /custom_components/fyta/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/custom_components/fyta/translations/de.json -------------------------------------------------------------------------------- /custom_components/fyta/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/custom_components/fyta/translations/en.json -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/hacs.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | homeassistant>=2024.1.0 2 | -------------------------------------------------------------------------------- /scripts/develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/scripts/develop -------------------------------------------------------------------------------- /scripts/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/scripts/lint -------------------------------------------------------------------------------- /scripts/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dontinelli/fyta-custom_component/HEAD/scripts/setup --------------------------------------------------------------------------------