|
| | LedSettings () |
| |
|
virtual | ~LedSettings () |
| | Destructor.
|
| |
| | LedSettings (const uint8_t order) |
| |
|
| LedSettings (const LedSettings &other) |
| | Copy Constructor.
|
| |
|
| LedSettings (LedSettings &&other) |
| | Move Constructor after the move, other is null, other.clear() must be called if it is to be used again.
|
| |
|
LedSettings & | operator= (const LedSettings &other) |
| | Sets the LedSettings object to be equal to other.
|
| |
|
LedSettings & | operator= (LedSettings &&other) |
| | Move assignment after the move, other is null, other.clear() must be called if it is to be used again.
|
| |
|
void | clear () |
| | Clears the LedSettings object After the call to this function, the LedSettings object is the same as one that has been default constructed.
|
| |
|
bool | isNull () const |
| | Returns true if the object is null (i.e. it has not been initialized, d_ptr is null)
|
| |
|
bool | isEmpty () const |
| | Checks if all attributes are set to their default values (same as the default constructor)
|
| |
| bool | operator== (const LedSettings &other) const |
| |
| bool | operator!= (const LedSettings &other) const |
| |
| uint8_t | order () const |
| |
| uint16_t | frame () const |
| |
| void | setOrder (const uint8_t order) |
| |
SPI 2840X Led settings.
This class represents the settings of a SPI 2840X Led. It is a concrete class, and can be instantiated. This class is copyable and movable.