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

How to turn on/off the Hvac Auto? #283

Open
Whirlwind opened this issue Aug 1, 2024 · 0 comments
Open

How to turn on/off the Hvac Auto? #283

Whirlwind opened this issue Aug 1, 2024 · 0 comments

Comments

@Whirlwind
Copy link

Whirlwind commented Aug 1, 2024

Hello, I can not find the API in the protobuf file about turn on/off the Hvac Auto. The hvacAutoAction seams that it only turn on/off the Climate.

By the way, I find the HvacTemperatureAdjustmentAction:

message HvacTemperatureAdjustmentAction {
message Temperature {
oneof type {
Void TEMP_UNKNOWN = 1;
Void TEMP_MIN = 2;
Void TEMP_MAX = 3;
}
}
message HvacTemperatureZone {
oneof type {
Void TEMP_ZONE_UNKNOWN = 1;
Void TEMP_ZONE_FRONT_LEFT = 2;
Void TEMP_ZONE_FRONT_RIGHT = 3;
Void TEMP_ZONE_REAR = 4;
}
}
float delta_celsius = 1;
sint32 delta_percent = 2;
float absolute_celsius = 3;
Temperature level = 5;
repeated HvacTemperatureZone hvac_temperature_zone = 4;
float driver_temp_celsius = 6;
float passenger_temp_celsius = 7;
}

How to use it? I send the data like this:

HvacTemperatureAdjustmentAction {
    absolute_celsius: 22,
    hvac_temperature_zone : {
        TEMP_ZONE_FRONT_LEFT: {}
    }
}

It seams that the absolute_celsius not works, because the driver_temp_celsius always be 0, so the Vehicle will change the temperature to LOW.

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

1 participant