From 421e8dea4b7a8c1b907cf35c6ad7e44908d592a7 Mon Sep 17 00:00:00 2001 From: Kristian Sloth Lauszus Date: Tue, 19 Apr 2016 18:10:01 +0200 Subject: [PATCH] Fixed some documentation in the Wii driver --- Wii.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Wii.h b/Wii.h index 5360682f..dde886b3 100755 --- a/Wii.h +++ b/Wii.h @@ -276,21 +276,21 @@ public: /** * Used to get the weight at the specific position on the Wii Balance Board. - * @param ::BalanceBoardEnum to read from. - * @return Returns the weight in kg. + * @param pos ::BalanceBoardEnum to read from. + * @return Returns the weight in kg. */ float getWeight(BalanceBoardEnum pos); /** * Used to get total weight on the Wii Balance Board. - * @returnReturns the weight in kg. + * @return Returns the weight in kg. */ float getTotalWeight(); /** * Used to get the raw reading at the specific position on the Wii Balance Board. - * @param ::BalanceBoardEnum to read from. - * @return Returns the raw reading. + * @param pos ::BalanceBoardEnum to read from. + * @return Returns the raw reading. */ uint16_t getWeightRaw(BalanceBoardEnum pos) { return wiiBalanceBoardRaw[pos];