aboutsummaryrefslogtreecommitdiffstats
path: root/lib/data/data_providers
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2023-11-29 15:29:59 -0500
committerScott Murray <scott.murray@konsulko.com>2023-11-29 15:38:42 -0500
commitdca5f5bc58fc3b25972bedc82827b71300d66adc (patch)
tree72525803c31d218b18c220e21173930aed959d0b /lib/data/data_providers
parentb9377beb28bb372f8fc29dfe3eeb9145462b716f (diff)
VSS signal fixes
Changes: - Fix sets of HVAC and volume control signals to update the actuator target value instead of the current value. With the KUKSA.val ecosystem, it is the actuator implementation / backend that updates the current value after actuating. - Add authorization token to subscribe request metadata if it is present. - Switch type used for engine speed to double to match VSS signal definition. This fixes receiving updates, and avoids needing to convert types as well. - Added logic to push out the HVAC fan speed setting and handle external updates. - Remove unused core/constants/paths.dart file to avoid confusion over VSS signals used and their variable naming. Bug-AGL: SPEC-4999 Change-Id: Ifbf69af25e3c563e9c707a4145089e4242b89bcd Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'lib/data/data_providers')
-rw-r--r--lib/data/data_providers/vehicle_notifier.dart64
1 files changed, 47 insertions, 17 deletions
diff --git a/lib/data/data_providers/vehicle_notifier.dart b/lib/data/data_providers/vehicle_notifier.dart
index c11332c..1b2a31a 100644
--- a/lib/data/data_providers/vehicle_notifier.dart
+++ b/lib/data/data_providers/vehicle_notifier.dart
@@ -84,8 +84,8 @@ class VehicleNotifier extends StateNotifier<Vehicle> {
}
break;
case VSSPath.vehicleEngineSpeed:
- if (update.entry.value.hasUint32()) {
- state = state.copyWith(engineSpeed: update.entry.value.uint32);
+ if (update.entry.value.hasFloat()) {
+ state = state.copyWith(engineSpeed: update.entry.value.float);
}
break;
case VSSPath.vehicleFrontLeftTire:
@@ -135,7 +135,16 @@ class VehicleNotifier extends StateNotifier<Vehicle> {
break;
case VSSPath.vehicleFanSpeed:
if (update.entry.value.hasUint32()) {
- state = state.copyWith(fanSpeed: update.entry.value.uint32);
+ // Convert 0-100 to local 0-3 setting
+ var value = update.entry.value.uint32;
+ var fanSpeed = 0;
+ if (value > 66)
+ fanSpeed = 3;
+ else if (value > 33)
+ fanSpeed = 2;
+ else if (value > 0)
+ fanSpeed = 1;
+ state = state.copyWith(fanSpeed: fanSpeed);
}
break;
case VSSPath.vehicleDriverTemperature:
@@ -293,20 +302,20 @@ class VehicleNotifier extends StateNotifier<Vehicle> {
authorization = config.authorization;
List<String> fewSignals = VSSPath().getSignalsList();
var request = SubscribeRequest();
+ Map<String, String> metadata = {};
+ if (authorization.isNotEmpty) {
+ metadata = {'authorization': "Bearer ${authorization}"};
+ }
for (int i = 0; i < fewSignals.length; i++) {
var entry = SubscribeEntry();
entry.path = fewSignals[i];
entry.fields.add(Field.FIELD_PATH);
entry.fields.add(Field.FIELD_VALUE);
request.entries.add(entry);
- // _stub.subscribe(request).listen((value) async {
- // //debugPrint(value.toString());
- // });
}
try {
- Map<String, String> metadata = {};
- //var responseStream = _stub.subscribe(request);
- stub.subscribe(request).listen((value) async {
+ var responseStream = stub.subscribe(request, options: CallOptions(metadata: metadata));
+ responseStream.listen((value) async {
for (var update in value.updates) {
if (!(update.hasEntry() && update.entry.hasPath())) continue;
handleSignalsUpdate(update);
@@ -357,7 +366,7 @@ class VehicleNotifier extends StateNotifier<Vehicle> {
helper.setUint32(
VSSPath.vehicleMediaVolume,
newVal.toInt(),
- false,
+ true,
);
}
@@ -369,7 +378,7 @@ class VehicleNotifier extends StateNotifier<Vehicle> {
helper.setInt32(
VSSPath.vehicleDriverTemperature,
value,
- false,
+ true,
);
state = state.copyWith(driverTemperature: value);
break;
@@ -377,7 +386,7 @@ class VehicleNotifier extends StateNotifier<Vehicle> {
helper.setInt32(
VSSPath.vehiclePassengerTemperature,
value,
- false,
+ true,
);
state = state.copyWith(passengerTemperature: value);
break;
@@ -391,6 +400,27 @@ class VehicleNotifier extends StateNotifier<Vehicle> {
}
void updateFanSpeed(int newValue) {
+ // Convert local 0-3 setting to the 0-100 the VSS signal expects
+ var targetFanSpeed = 0;
+ switch (newValue) {
+ case 1:
+ targetFanSpeed = 33;
+ break;
+ case 2:
+ targetFanSpeed = 66;
+ break;
+ case 3:
+ targetFanSpeed = 100;
+ case 0:
+ default:
+ break;
+ }
+ var helper = ValClientHelper(stub: stub, authorization: authorization);
+ helper.setUint32(
+ VSSPath.vehicleFanSpeed,
+ targetFanSpeed,
+ true,
+ );
state = state.copyWith(fanSpeed: newValue);
}
@@ -402,7 +432,7 @@ class VehicleNotifier extends StateNotifier<Vehicle> {
helper.setBool(
VSSPath.vehicleIsAirConditioningActive,
!state.isAirConditioningActive,
- false,
+ true,
);
state = state.copyWith(
isAirConditioningActive: !state.isAirConditioningActive);
@@ -411,7 +441,7 @@ class VehicleNotifier extends StateNotifier<Vehicle> {
helper.setBool(
VSSPath.vehicleIsFrontDefrosterActive,
!state.isFrontDefrosterActive,
- false,
+ true,
);
state = state.copyWith(
isFrontDefrosterActive: !state.isFrontDefrosterActive);
@@ -420,7 +450,7 @@ class VehicleNotifier extends StateNotifier<Vehicle> {
helper.setBool(
VSSPath.vehicleIsRearDefrosterActive,
!state.isRearDefrosterActive,
- false,
+ true,
);
state = state.copyWith(
isRearDefrosterActive: !state.isRearDefrosterActive);
@@ -429,7 +459,7 @@ class VehicleNotifier extends StateNotifier<Vehicle> {
helper.setBool(
VSSPath.vehicleIsRecirculationActive,
!state.isRecirculationActive,
- false,
+ true,
);
state = state.copyWith(
isRecirculationActive: !state.isRecirculationActive);
@@ -452,7 +482,7 @@ class VehicleNotifier extends StateNotifier<Vehicle> {
var range = state.range;
var psi = state.frontLeftTire;
var actualSpeed = 0.0;
- var actualRpm = 0;
+ var actualRpm = 0.0;
var actualFuelLevel = 0.0;
var actualInsideTemp = 0.0;
var actualOutsideTemp = 0.0;