├── .devcontainer └── integration │ ├── Dockerfile │ └── devcontainer.json ├── .gitattributes ├── .github ├── FUNDING.yaml ├── ISSUE_TEMPLATE │ ├── bug.yaml │ ├── config.yaml │ ├── feature_request.yaml │ ├── new_device_request.yaml │ └── new_language_request.yaml ├── copilot-instructions.md ├── dependabot.yaml ├── scripts │ └── library_doc │ │ └── update_library_files.py └── workflows │ ├── crowdin-download.yaml │ ├── crowdin-upload.yaml │ ├── deploy_docs.yaml │ ├── json_librarian.yaml │ ├── json_library_upload.yaml │ ├── json_validate.yaml │ ├── lint.yaml │ ├── new_device.yaml │ ├── release.yaml │ └── validate.yaml ├── .gitignore ├── .python-version ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── crowdin.yml ├── custom_components └── battery_notes │ ├── __init__.py │ ├── binary_sensor.py │ ├── button.py │ ├── common.py │ ├── config_flow.py │ ├── const.py │ ├── coordinator.py │ ├── diagnostics.py │ ├── discovery.py │ ├── entity.py │ ├── errors.py │ ├── filters.py │ ├── icons.json │ ├── library.py │ ├── library_updater.py │ ├── manifest.json │ ├── repairs.py │ ├── schema.json │ ├── sensor.py │ ├── services.py │ ├── services.yaml │ ├── store.py │ └── translations │ ├── ar.json │ ├── ca.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── el.json │ ├── en.json │ ├── es-ES.json │ ├── fi.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── lt.json │ ├── lv.json │ ├── nl.json │ ├── no.json │ ├── pl.json │ ├── pt-BR.json │ ├── pt.json │ ├── ru.json │ ├── sk.json │ ├── sr-Latn.json │ ├── sv-SE.json │ ├── tr.json │ ├── uk.json │ ├── ur-IN.json │ ├── zh-Hans.json │ └── zh-Hant.json ├── docs ├── actions.md ├── assets │ ├── documentation.png │ ├── new-device-request.png │ ├── screenshot-attributes.png │ ├── screenshot-battery-search.png │ ├── screenshot-device-info.png │ ├── screenshot-device.png │ └── screenshot-discovery.png ├── blueprints.md ├── blueprints │ ├── battery_notes_battery_not_reported.yaml │ ├── battery_notes_battery_replaced.yaml │ └── battery_notes_battery_threshold.yaml ├── community.md ├── configuration.md ├── entities.md ├── events.md ├── faq.md ├── index.md ├── library.md └── translations.md ├── hacs.json ├── library.md ├── library ├── library.json └── schema.json ├── mkdocs.yaml ├── pyproject.toml ├── scripts ├── develop ├── lint └── setup └── uv.lock /.devcontainer/integration/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.devcontainer/integration/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/integration/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.devcontainer/integration/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/FUNDING.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/FUNDING.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yaml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_device_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/ISSUE_TEMPLATE/new_device_request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_language_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/ISSUE_TEMPLATE/new_language_request.yaml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/scripts/library_doc/update_library_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/scripts/library_doc/update_library_files.py -------------------------------------------------------------------------------- /.github/workflows/crowdin-download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/workflows/crowdin-download.yaml -------------------------------------------------------------------------------- /.github/workflows/crowdin-upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/workflows/crowdin-upload.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy_docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/workflows/deploy_docs.yaml -------------------------------------------------------------------------------- /.github/workflows/json_librarian.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/workflows/json_librarian.yaml -------------------------------------------------------------------------------- /.github/workflows/json_library_upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/workflows/json_library_upload.yaml -------------------------------------------------------------------------------- /.github/workflows/json_validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/workflows/json_validate.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/new_device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/workflows/new_device.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.github/workflows/validate.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13.2 -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/crowdin.yml -------------------------------------------------------------------------------- /custom_components/battery_notes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/__init__.py -------------------------------------------------------------------------------- /custom_components/battery_notes/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/battery_notes/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/button.py -------------------------------------------------------------------------------- /custom_components/battery_notes/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/common.py -------------------------------------------------------------------------------- /custom_components/battery_notes/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/config_flow.py -------------------------------------------------------------------------------- /custom_components/battery_notes/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/const.py -------------------------------------------------------------------------------- /custom_components/battery_notes/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/coordinator.py -------------------------------------------------------------------------------- /custom_components/battery_notes/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/diagnostics.py -------------------------------------------------------------------------------- /custom_components/battery_notes/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/discovery.py -------------------------------------------------------------------------------- /custom_components/battery_notes/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/entity.py -------------------------------------------------------------------------------- /custom_components/battery_notes/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/errors.py -------------------------------------------------------------------------------- /custom_components/battery_notes/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/filters.py -------------------------------------------------------------------------------- /custom_components/battery_notes/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/icons.json -------------------------------------------------------------------------------- /custom_components/battery_notes/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/library.py -------------------------------------------------------------------------------- /custom_components/battery_notes/library_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/library_updater.py -------------------------------------------------------------------------------- /custom_components/battery_notes/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/manifest.json -------------------------------------------------------------------------------- /custom_components/battery_notes/repairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/repairs.py -------------------------------------------------------------------------------- /custom_components/battery_notes/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/schema.json -------------------------------------------------------------------------------- /custom_components/battery_notes/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/sensor.py -------------------------------------------------------------------------------- /custom_components/battery_notes/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/services.py -------------------------------------------------------------------------------- /custom_components/battery_notes/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/services.yaml -------------------------------------------------------------------------------- /custom_components/battery_notes/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/store.py -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/ar.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/ca.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/cs.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/da.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/de.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/el.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/en.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/es-ES.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/fi.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/fr.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/hu.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/it.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/lt.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/lv.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/nl.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/no.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/pl.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/pt-BR.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/pt.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/ru.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/sk.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/sr-Latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/sr-Latn.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/sv-SE.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/tr.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/uk.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/ur-IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/ur-IN.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/zh-Hans.json -------------------------------------------------------------------------------- /custom_components/battery_notes/translations/zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/custom_components/battery_notes/translations/zh-Hant.json -------------------------------------------------------------------------------- /docs/actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/actions.md -------------------------------------------------------------------------------- /docs/assets/documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/assets/documentation.png -------------------------------------------------------------------------------- /docs/assets/new-device-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/assets/new-device-request.png -------------------------------------------------------------------------------- /docs/assets/screenshot-attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/assets/screenshot-attributes.png -------------------------------------------------------------------------------- /docs/assets/screenshot-battery-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/assets/screenshot-battery-search.png -------------------------------------------------------------------------------- /docs/assets/screenshot-device-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/assets/screenshot-device-info.png -------------------------------------------------------------------------------- /docs/assets/screenshot-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/assets/screenshot-device.png -------------------------------------------------------------------------------- /docs/assets/screenshot-discovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/assets/screenshot-discovery.png -------------------------------------------------------------------------------- /docs/blueprints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/blueprints.md -------------------------------------------------------------------------------- /docs/blueprints/battery_notes_battery_not_reported.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/blueprints/battery_notes_battery_not_reported.yaml -------------------------------------------------------------------------------- /docs/blueprints/battery_notes_battery_replaced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/blueprints/battery_notes_battery_replaced.yaml -------------------------------------------------------------------------------- /docs/blueprints/battery_notes_battery_threshold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/blueprints/battery_notes_battery_threshold.yaml -------------------------------------------------------------------------------- /docs/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/community.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/entities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/entities.md -------------------------------------------------------------------------------- /docs/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/events.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/library.md -------------------------------------------------------------------------------- /docs/translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/docs/translations.md -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/hacs.json -------------------------------------------------------------------------------- /library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/library.md -------------------------------------------------------------------------------- /library/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/library/library.json -------------------------------------------------------------------------------- /library/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/library/schema.json -------------------------------------------------------------------------------- /mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/mkdocs.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/scripts/develop -------------------------------------------------------------------------------- /scripts/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/scripts/lint -------------------------------------------------------------------------------- /scripts/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/scripts/setup -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-codechimp/HA-Battery-Notes/HEAD/uv.lock --------------------------------------------------------------------------------