mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Fixed some documentation in the Wii driver
This commit is contained in:
parent
51dde0252e
commit
421e8dea4b
1 changed files with 5 additions and 5 deletions
10
Wii.h
10
Wii.h
|
@ -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];
|
||||||
|
|
Loading…
Reference in a new issue