From 7ade48545ed27d3beb6b7e823d75386b3cfc70f5 Mon Sep 17 00:00:00 2001 From: DuSack1220 Date: Wed, 15 Mar 2023 15:28:46 +0100 Subject: [PATCH] fixed cliff signal documentation --- include/create/create.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/create/create.h b/include/create/create.h index 80beee3..512d264 100644 --- a/include/create/create.h +++ b/include/create/create.h @@ -407,22 +407,22 @@ namespace create { bool isCliffFrontRight() const; /** - * \return true if the left sensor detects a cliff, false otherwise. + * \return the IR value of the left cliff sensor. */ uint16_t getCliffSignalLeft() const; /** - * \return true if the front left sensor detects a cliff, false otherwise. + * \return the IR value of the front left cliff sensor. */ uint16_t getCliffSignalFrontLeft() const; /** - * \return true if the right sensor detects a cliff, false otherwise. + * \return the IR value of the right cliff sensor. */ uint16_t getCliffSignalRight() const; /** - * \return true if the front right sensor detects a cliff, false otherwise. + * \return the IR value of the front right cliff sensor. */ uint16_t getCliffSignalFrontRight() const;