Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5446412c authored by Tyler Trephan's avatar Tyler Trephan Committed by Automerger Merge Worker
Browse files

Updated HVAC_SIDE_MIRROR_HEAT with a more realistic config am: 7073d3fa

parents 047bf658 7073d3fa
Loading
Loading
Loading
Loading
+6 −11
Original line number Diff line number Diff line
@@ -720,17 +720,12 @@ const std::vector<ConfigDeclaration> kVehicleProperties = {
                    .access = VehiclePropertyAccess::READ_WRITE,
                    .changeMode = VehiclePropertyChangeMode::ON_CHANGE,
                    .areaConfigs = {VehicleAreaConfig{
                                            .areaId = toInt(VehicleAreaMirror::DRIVER_LEFT),
                                            .minInt32Value = 0,
                                            .maxInt32Value = 2,
                                    },
                                    VehicleAreaConfig{
                                            .areaId = toInt(VehicleAreaMirror::DRIVER_RIGHT),
                            .areaId = toInt(VehicleAreaMirror::DRIVER_LEFT) |
                                      toInt(VehicleAreaMirror::DRIVER_RIGHT),
                            .minInt32Value = 0,
                            .maxInt32Value = 2,
                    }}},
         .initialAreaValues = {{toInt(VehicleAreaMirror::DRIVER_LEFT), {.int32Values = {2}}},
                               {toInt(VehicleAreaMirror::DRIVER_RIGHT), {.int32Values = {1}}}}},
         .initialValue = {.int32Values = {0}}},

        {.config = {.prop = toInt(VehicleProperty::HVAC_TEMPERATURE_SET),
                    .access = VehiclePropertyAccess::READ_WRITE,