Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FR] 12v warning. #693

Open
Thomas1107 opened this issue Dec 13, 2024 · 2 comments
Open

[FR] 12v warning. #693

Thomas1107 opened this issue Dec 13, 2024 · 2 comments
Labels
enhancement New feature or request

Comments

@Thomas1107
Copy link

Is your feature request related to a problem? Please describe.

This is related to a problem in many ID cars where the car cannot be operated because the 12V battery level is to low. The app gives a warning, but in HA we can curently not see this.

Describe the solution you'd like

I would like an additional sensor that will show the 12v battery level. This could potentially be in idData.readiness.readinessStatus.value.connectionState but I haven't been able to test this yet.

Describe alternatives you've considered

I am currently using the last connected parameter to assume an issue however, there can be several causes of the car loosing connection for example poor cellular coverage.

Additional context

@Thomas1107 Thomas1107 added the enhancement New feature or request label Dec 13, 2024
@stickpin
Copy link
Collaborator

stickpin commented Dec 13, 2024

I guess it's this one insufficientBatteryLevelWarning:

    "readiness": {
        "readinessStatus": {
            "value": {
                "connectionState": {
                    "isOnline": true,
                    "isActive": false,
                    "batteryPowerLevel": "comfort",
                    "dailyPowerBudgetAvailable": true
                },
                "connectionWarning": {
                    "insufficientBatteryLevelWarning": false,
                    "dailyPowerBudgetWarning": false
                }
            }
        }
    },

I will add it to the upcoming version.

@Thomas1107
Copy link
Author

Thomas1107 commented Dec 14, 2024

Yes I think so too. When I got the error it looked like this:

"readiness": { "readinessStatus": { "value": { "connectionState": { "isOnline": false, "isActive": false, "batteryPowerLevel": "off", "dailyPowerBudgetAvailable": true }, "connectionWarning": { "insufficientBatteryLevelWarning": false, "dailyPowerBudgetWarning": false } } } },

Now that the error is gone it looks like this:

"readiness": { "readinessStatus": { "value": { "connectionState": { "isOnline": true, "isActive": false, "batteryPowerLevel": "comfort", "dailyPowerBudgetAvailable": true }, "connectionWarning": { "insufficientBatteryLevelWarning": false, "dailyPowerBudgetWarning": false } } } },

So seems to be the isOnline and /or batteryPowerLevel 🤔

Thanks for the effort! 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants