summaryrefslogtreecommitdiffstats
path: root/src/KuksaClient.h
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2023-11-29 15:40:23 -0500
committerScott Murray <scott.murray@konsulko.com>2023-11-29 15:43:58 -0500
commit1f55937667e35fb79dabee0e180787e34a59169a (patch)
tree707961d1643ed844b7f55db25a3a07b7865447ca /src/KuksaClient.h
parentbe3bc37fbdd48f70a2cee4fb0f61c8b688707b1f (diff)
Add minimal mock support for the VSS signals: Vehicle.Cabin.HVAC.IsAirConditioningActive Vehicle.Cabin.HVAC.IsFrontDefrosterActive Vehicle.Cabin.HVAC.IsRearDefrosterActive Vehicle.Cabin.HVAC.IsRecirculationActive The implemented behavior is to simply push the actuator target value out as the new value, so that VSS clients will see the operation as having completed. Bug-AGL: SPEC-5000 Change-Id: I9501d54dae13825c7eadcdc417d6355b64f9cd36 Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'src/KuksaClient.h')
-rw-r--r--src/KuksaClient.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/KuksaClient.h b/src/KuksaClient.h
index fd9a9e0..a5f901e 100644
--- a/src/KuksaClient.h
+++ b/src/KuksaClient.h
@@ -36,6 +36,7 @@ public:
void get(const std::string &path, GetResponseCallback cb, const bool actuator = false);
void set(const std::string &path, const std::string &value, SetResponseCallback cb, const bool actuator = false);
+ void set(const std::string &path, const bool value, SetResponseCallback cb, const bool actuator = false);
void set(const std::string &path, const int8_t value, SetResponseCallback cb, const bool actuator = false);
void set(const std::string &path, const int16_t value, SetResponseCallback cb, const bool actuator = false);
void set(const std::string &path, const int32_t value, SetResponseCallback cb, const bool actuator = false);