From 1de66629a31ee2a4751b2f30c5baa11464ba5aad Mon Sep 17 00:00:00 2001 From: Matthew Barth Date: Mon, 12 Jun 2017 13:13:02 -0500 Subject: Add default floor speed support Change-Id: Id2d3b362e79e7a8c2330181f68ae11e43f84e2fd Signed-off-by: Matthew Barth --- control/zone.hpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'control/zone.hpp') diff --git a/control/zone.hpp b/control/zone.hpp index 1af0c22..c524397 100644 --- a/control/zone.hpp +++ b/control/zone.hpp @@ -113,6 +113,16 @@ class Zone _properties[object][interface][property]); }; + /** + * @brief Get the default floor speed + * + * @return - The defined default floor speed + */ + inline auto getDefFloor() + { + return _defFloorSpeed; + }; + private: /** @@ -130,6 +140,11 @@ class Zone */ const size_t _zoneNum; + /** + * The default floor speed for the zone + */ + const uint64_t _defFloorSpeed; + /** * Automatic fan control active state */ -- cgit v1.2.1