From c323ab8fde212120d8d1914d453afeb55b3576e5 Mon Sep 17 00:00:00 2001 From: Roger Zanoni Date: Thu, 28 Dec 2023 20:07:05 -0300 Subject: Update HVAC app to use grpc-web instead of websockets Adapt the HTML5 applications to use kuksa.val service Bug-AGL: SPEC-4599 Signed-off-by: Roger Zanoni Change-Id: I3e36a6c08041db8fb59fd7f20497c1c156bbb2f7 --- src/js/paths.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/js/paths.js') diff --git a/src/js/paths.js b/src/js/paths.js index 4f3c5d3..3001b51 100644 --- a/src/js/paths.js +++ b/src/js/paths.js @@ -15,14 +15,14 @@ */ // https://github.com/COVESA/vehicle_signal_specification/blob/master/spec/Cabin/SingleHVACStation.vspec -export const leftAirDistribution = 'Vehicle.Cabin.HVAC.Station.Row1.Left.AirDistribution'; -export const leftFanSpeed = 'Vehicle.Cabin.HVAC.Station.Row1.Left.FanSpeed'; -export const leftSeatTemperature = 'Vehicle.Cabin.Seat.Row1.Pos1.Heating'; -export const rightSeatTemperature = 'Vehicle.Cabin.Seat.Row1.Pos2.Heating'; +export const leftAirDistribution = 'Vehicle.Cabin.HVAC.Station.Row1.Driver.AirDistribution'; +export const leftFanSpeed = 'Vehicle.Cabin.HVAC.Station.Row1.Driver.FanSpeed'; +export const leftSeatTemperature = 'Vehicle.Cabin.Seat.Row1.DriverSide.Heating'; +export const rightSeatTemperature = 'Vehicle.Cabin.Seat.Row1.PassengerSide.Heating'; // https://github.com/COVESA/vehicle_signal_specification/blob/master/spec/Cabin/SingleSeat.vspec -export const leftSeatWarmer = 'Vehicle.Cabin.Seat.Row1.Pos1.Switch.IsWarmerEngaged'; -export const rightSeatWarmer = 'Vehicle.Cabin.Seat.Row1.Pos2.Switch.IsWarmerEngaged'; +export const leftSeatWarmer = 'Vehicle.Cabin.Seat.Row1.DriverSide.Switch.IsWarmerEngaged'; +export const rightSeatWarmer = 'Vehicle.Cabin.Seat.Row1.PassengerSide.Switch.IsWarmerEngaged'; // https://github.com/COVESA/vehicle_signal_specification/blob/master/spec/Cabin/HVAC.vspec export const recirculation = 'Vehicle.Cabin.HVAC.IsRecirculationActive'; -- cgit 1.2.3-korg