Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 1.06 KB

File metadata and controls

22 lines (16 loc) · 1.06 KB

class Finger

Member values

Member name Data type Description
finger_identifier uint32 Finger identifier
value float32  

Member functions

Function name Return type Input type Description
finger_identifier() uint32 void Returns the current value of finger_identifier. If the finger_identifier is not set, returns 0.
set_finger_identifier() void uint32 Sets the value of finger_identifier. After calling this, finger_identifier() will return value.
clear_finger_identifier() void void Clears the value of finger_identifier. After calling this, finger_identifier() will return 0.
value() float32 void Returns the current value of value. If the value is not set, returns 0.
set_value() void float32 Sets the value of value. After calling this, value() will return value.
clear_value() void void Clears the value of value. After calling this, value() will return 0.

Parent topic: Base (C++)