mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
Update JsonConnection.h
Former-commit-id: fa07c01ab5bb34029d8b13ea93187a54686d784c
This commit is contained in:
parent
0baebe3873
commit
8caf69e541
@ -89,6 +89,8 @@ public:
|
|||||||
/// @param transformId The identifier of the transform to set
|
/// @param transformId The identifier of the transform to set
|
||||||
/// @param saturation The HSV saturation gain
|
/// @param saturation The HSV saturation gain
|
||||||
/// @param value The HSV value gain
|
/// @param value The HSV value gain
|
||||||
|
/// @param saturationL The HSL saturation gain
|
||||||
|
/// @param luminance The HSL luminance gain
|
||||||
/// @param threshold The threshold
|
/// @param threshold The threshold
|
||||||
/// @param gamma The gamma value
|
/// @param gamma The gamma value
|
||||||
/// @param blacklevel The blacklevel
|
/// @param blacklevel The blacklevel
|
||||||
@ -98,11 +100,43 @@ public:
|
|||||||
std::string * transformId,
|
std::string * transformId,
|
||||||
double * saturation,
|
double * saturation,
|
||||||
double * value,
|
double * value,
|
||||||
|
double * saturationL,
|
||||||
|
double * luminance,
|
||||||
ColorTransformValues * threshold,
|
ColorTransformValues * threshold,
|
||||||
ColorTransformValues * gamma,
|
ColorTransformValues * gamma,
|
||||||
ColorTransformValues * blacklevel,
|
ColorTransformValues * blacklevel,
|
||||||
ColorTransformValues * whitelevel);
|
ColorTransformValues * whitelevel);
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Set the color correction of the leds
|
||||||
|
///
|
||||||
|
/// @note Note that providing a NULL will leave the settings on the server unchanged
|
||||||
|
///
|
||||||
|
/// @param correctionId The identifier of the correction to set
|
||||||
|
/// @param red The red correction value
|
||||||
|
/// @param green The green correction value
|
||||||
|
/// @param blue The blue correction value
|
||||||
|
void setCorrection(
|
||||||
|
std::string * correctionId,
|
||||||
|
int * red,
|
||||||
|
int * green,
|
||||||
|
int * blue);
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Set the color temperature of the leds
|
||||||
|
///
|
||||||
|
/// @note Note that providing a NULL will leave the settings on the server unchanged
|
||||||
|
///
|
||||||
|
/// @param temperatureId The identifier of the correction to set
|
||||||
|
/// @param red The red temperature value
|
||||||
|
/// @param green The green temperature value
|
||||||
|
/// @param blue The blue temperature value
|
||||||
|
void setCorrection(
|
||||||
|
std::string * temperaturenId,
|
||||||
|
int * red,
|
||||||
|
int * green,
|
||||||
|
int * blue);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
///
|
///
|
||||||
/// Send a json command message and receive its reply
|
/// Send a json command message and receive its reply
|
||||||
|
Loading…
Reference in New Issue
Block a user