Fixed some documentation in the Wii driver

This commit is contained in:
Kristian Sloth Lauszus 2016-04-19 18:10:01 +02:00
parent 51dde0252e
commit 421e8dea4b

10
Wii.h
View file

@ -276,21 +276,21 @@ public:
/** /**
* Used to get the weight at the specific position on the Wii Balance Board. * Used to get the weight at the specific position on the Wii Balance Board.
* @param ::BalanceBoardEnum to read from. * @param pos ::BalanceBoardEnum to read from.
* @return Returns the weight in kg. * @return Returns the weight in kg.
*/ */
float getWeight(BalanceBoardEnum pos); float getWeight(BalanceBoardEnum pos);
/** /**
* Used to get total weight on the Wii Balance Board. * Used to get total weight on the Wii Balance Board.
* @returnReturns the weight in kg. * @return Returns the weight in kg.
*/ */
float getTotalWeight(); float getTotalWeight();
/** /**
* Used to get the raw reading at the specific position on the Wii Balance Board. * Used to get the raw reading at the specific position on the Wii Balance Board.
* @param ::BalanceBoardEnum to read from. * @param pos ::BalanceBoardEnum to read from.
* @return Returns the raw reading. * @return Returns the raw reading.
*/ */
uint16_t getWeightRaw(BalanceBoardEnum pos) { uint16_t getWeightRaw(BalanceBoardEnum pos) {
return wiiBalanceBoardRaw[pos]; return wiiBalanceBoardRaw[pos];