mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Dynamic Device Selection/Configuration (#1164)
This commit is contained in:
@@ -300,10 +300,21 @@ protected:
|
||||
/// even if the device is not in enabled state (allowing to have a defined state during device power-off).
|
||||
/// @note: latch-time is considered between each write
|
||||
///
|
||||
/// @param[in] numberOfWrites Write Black given number of times
|
||||
/// @param[in] numberOfWrites Write Black a given number of times
|
||||
/// @return Zero on success else negative
|
||||
///
|
||||
virtual int writeBlack(int numberOfBlack=1);
|
||||
virtual int writeBlack(int numberOfWrites = 1);
|
||||
|
||||
///
|
||||
/// @brief Writes a color to the output stream,
|
||||
/// even if the device is not in enabled state (allowing to have a defined state during device power-off).
|
||||
/// @note: latch-time is considered between each write
|
||||
///
|
||||
/// @param[in] color to be written
|
||||
/// @param[in] numberOfWrites Write the color a given number of times
|
||||
/// @return Zero on success else negative
|
||||
///
|
||||
virtual int writeColor(const ColorRgb& color, int numberOfWrites = 1);
|
||||
|
||||
///
|
||||
/// @brief Power-/turn on the LED-device.
|
||||
@@ -431,7 +442,7 @@ protected slots:
|
||||
///
|
||||
/// @param[in] errorMsg The error message to be logged
|
||||
///
|
||||
virtual void setInError( const QString& errorMsg);
|
||||
virtual void setInError( const QString& errorMsg);
|
||||
|
||||
private:
|
||||
|
||||
|
Reference in New Issue
Block a user