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

Unexpected values received for ChargeState #334

Open
andreypixida opened this issue Jan 28, 2025 · 1 comment
Open

Unexpected values received for ChargeState #334

andreypixida opened this issue Jan 28, 2025 · 1 comment

Comments

@andreypixida
Copy link

In the protobuf definition, the ChargingState enum for the ChargeState field is defined as follows:

enum ChargingState {
    ChargeStateUnknown = 0;
    ChargeStateDisconnected = 1;
    ChargeStateNoPower = 2;
    ChargeStateStarting = 3;
    ChargeStateCharging = 4;
    ChargeStateComplete = 5;
    ChargeStateStopped = 6;
}

However, instead of receiving the expected ChargingState values, I received unexpected values: Idle, ClearFaults, Enable, Startup, and Shutdown. Additionally, I tried to include the DetailedChargeState field in the configuration, but I did not receive this field either.

Where can I find the definition for the ChargeState field, or should I adjust something to ensure it matches the protobuf definition?

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

No branches or pull requests

2 participants