class GPIOState
August 13, 2019 ยท View on GitHub
Member values
| Member name | Data type | Description |
|---|---|---|
| identifier | uint32 | GPIO identifier |
| value | uint32 | Value |
Member functions
| Function name | Return type | Input type | Description |
|---|---|---|---|
| identifier() const | uint32 | void | Returns the current value of identifier. If the identifier is not set, returns 0. |
| set_identifier() | void | uint32 | Sets the value of identifier. After calling this, identifier() will return value. |
| clear_identifier() | void | void | Clears the value of identifier. After calling this, identifier() will return the empty string/empty bytes. |
| value() const | 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 the empty string/empty bytes. |
Parent topic: InterconnectConfig (C++)