Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 1008 Bytes

File metadata and controls

22 lines (16 loc) · 1008 Bytes

class CapSenseRegister

Member values

Member name Data type Description
address uint32 Register address
value uint32 Register value

Member functions

Function name Return type Input type Description
address() uint32 void Returns the current value of address. If the address is not set, returns 0.
set_address() void uint32 Sets the value of address. After calling this, address() will return value.
clear_address() void void Clears the value of address. After calling this, address() will return 0.
value() uint32 void Returns the current value of value. If the value is not set, returns 0.
set_value() void uint32 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: DeviceConfig (C++)