├── .devcontainer ├── README.md ├── configuration.yaml └── devcontainer.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ └── issue.md ├── dependabot.yml └── workflows │ ├── cron.yaml │ ├── pull.yml │ └── push.yml ├── .gitignore ├── .python-version ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── custom_components ├── __init__.py └── ta_cmi │ ├── __init__.py │ ├── binary_sensor.py │ ├── config_flow.py │ ├── const.py │ ├── device_parser.py │ ├── diagnostics.py │ ├── manifest.json │ ├── sensor.py │ ├── strings.json │ └── translations │ ├── de.json │ └── en.json ├── hacs.json ├── pyproject.toml ├── tests ├── __init__.py ├── conftest.py ├── test_config_flow.py └── test_sensor.py └── uv.lock /.devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/.devcontainer/README.md -------------------------------------------------------------------------------- /.devcontainer/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/.devcontainer/configuration.yaml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/.github/workflows/cron.yaml -------------------------------------------------------------------------------- /.github/workflows/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/.github/workflows/pull.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/__init__.py: -------------------------------------------------------------------------------- 1 | """Custom components module.""" 2 | -------------------------------------------------------------------------------- /custom_components/ta_cmi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/custom_components/ta_cmi/__init__.py -------------------------------------------------------------------------------- /custom_components/ta_cmi/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/custom_components/ta_cmi/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/ta_cmi/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/custom_components/ta_cmi/config_flow.py -------------------------------------------------------------------------------- /custom_components/ta_cmi/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/custom_components/ta_cmi/const.py -------------------------------------------------------------------------------- /custom_components/ta_cmi/device_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/custom_components/ta_cmi/device_parser.py -------------------------------------------------------------------------------- /custom_components/ta_cmi/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/custom_components/ta_cmi/diagnostics.py -------------------------------------------------------------------------------- /custom_components/ta_cmi/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/custom_components/ta_cmi/manifest.json -------------------------------------------------------------------------------- /custom_components/ta_cmi/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/custom_components/ta_cmi/sensor.py -------------------------------------------------------------------------------- /custom_components/ta_cmi/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/custom_components/ta_cmi/strings.json -------------------------------------------------------------------------------- /custom_components/ta_cmi/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/custom_components/ta_cmi/translations/de.json -------------------------------------------------------------------------------- /custom_components/ta_cmi/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/custom_components/ta_cmi/translations/en.json -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/hacs.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/tests/test_config_flow.py -------------------------------------------------------------------------------- /tests/test_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/tests/test_sensor.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerMaximum/Technische-Alternative-CMI/HEAD/uv.lock --------------------------------------------------------------------------------