From a75acb5d46dd92c858e1ae7f46132c684e0a36d6 Mon Sep 17 00:00:00 2001 From: John Date: Sat, 5 Feb 2022 19:15:56 +0100 Subject: [PATCH] documentation --- src/lib/ebus/device.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/lib/ebus/device.h b/src/lib/ebus/device.h index f2317f76..fffc89cc 100755 --- a/src/lib/ebus/device.h +++ b/src/lib/ebus/device.h @@ -209,8 +209,17 @@ class Device { */ void setListener(DeviceListener* listener) { m_listener = listener; } + /** + * Send a request for extra infos to enhanced device. + * @param infoId the ID of the info to request. + * @return @a RESULT_OK on success, or an error code otherwise. + */ result_t requestEnhancedInfo(symbol_t infoId); + /** + * Retrieve/update all extra infos from an enhanced device. + * @return @a a string with the extra infos, or empty. + */ string getEnhancedInfos(); protected: