gitextract_84fzj90j/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows/ │ ├── inactiveIssues.yml │ ├── release.yml │ ├── semanticTitle.yaml │ └── validate.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── custom_components/ │ ├── audiconnect/ │ │ ├── __init__.py │ │ ├── audi_account.py │ │ ├── audi_api.py │ │ ├── audi_connect_account.py │ │ ├── audi_entity.py │ │ ├── audi_models.py │ │ ├── audi_services.py │ │ ├── binary_sensor.py │ │ ├── config_flow.py │ │ ├── const.py │ │ ├── dashboard.py │ │ ├── device_tracker.py │ │ ├── lock.py │ │ ├── manifest.json │ │ ├── sensor.py │ │ ├── services.yaml │ │ ├── strings.json │ │ ├── switch.py │ │ ├── translations/ │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── fi.json │ │ │ ├── fr.json │ │ │ ├── nb.json │ │ │ ├── nl.json │ │ │ ├── pt-BR.json │ │ │ └── pt.json │ │ └── util.py │ └── test.py ├── hacs.json ├── info.md └── readme.md