mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
refactor: Align Phillips Hue to reworked device handling (#712)
* Align PhilipsHue (Classic) * Minor Device corrections * Have code working with Qt < 5.10 * Fixes on Hue Wizzard * Fixes on Hue Wizzard * Calculate Latchtime only for lights updated by hyperion * Allow to disable restoring original light's state * Fix - LightIDs / LightMap vectors were not cleared when reopening the device * Reduce API Calls for state updates by consolidation
This commit is contained in:
@@ -37,13 +37,13 @@ static const char STATE_ONOFF_VALUE[] = "value";
|
||||
static const char STATE_VALUE_TRUE[] = "true";
|
||||
static const char STATE_VALUE_FALSE[] = "false";
|
||||
|
||||
//Device Data elements
|
||||
// Device Data elements
|
||||
static const char DEV_DATA_NAME[] = "name";
|
||||
static const char DEV_DATA_MODEL[] = "model";
|
||||
static const char DEV_DATA_MANUFACTURER[] = "manufacturer";
|
||||
static const char DEV_DATA_FIRMWAREVERSION[] = "firmwareVersion";
|
||||
|
||||
//Nanoleaf Stream Control elements
|
||||
// Nanoleaf Stream Control elements
|
||||
//static const char STREAM_CONTROL_IP[] = "streamControlIpAddr";
|
||||
static const char STREAM_CONTROL_PORT[] = "streamControlPort";
|
||||
//static const char STREAM_CONTROL_PROTOCOL[] = "streamControlProtocol";
|
||||
@@ -59,7 +59,7 @@ static const char API_STATE[] ="state";
|
||||
static const char API_PANELLAYOUT[] = "panelLayout";
|
||||
static const char API_EFFECT[] = "effects";
|
||||
|
||||
//Nanoleaf ssdp services
|
||||
// Nanoleaf ssdp services
|
||||
static const char SSDP_CANVAS[] = "nanoleaf:nl29";
|
||||
static const char SSDP_LIGHTPANELS[] = "nanoleaf_aurora:light";
|
||||
const int SSDP_TIMEOUT = 5000; // timout in ms
|
||||
@@ -132,7 +132,7 @@ bool LedDeviceNanoleaf::init(const QJsonObject &deviceConfig)
|
||||
if ( _hostname.isEmpty() )
|
||||
{
|
||||
//Discover Nanoleaf device
|
||||
if ( !discoverNanoleafDevice() )
|
||||
if ( !discoverDevice() )
|
||||
{
|
||||
this->setInError("No target IP defined nor Nanoleaf device was discovered");
|
||||
return false;
|
||||
@@ -256,24 +256,17 @@ int LedDeviceNanoleaf::open()
|
||||
|
||||
if ( init(_devConfig) )
|
||||
{
|
||||
if ( !initNetwork() )
|
||||
if ( initLeds() )
|
||||
{
|
||||
this->setInError( "UDP Network error!" );
|
||||
}
|
||||
else
|
||||
{
|
||||
if ( initLeds() )
|
||||
{
|
||||
_deviceReady = true;
|
||||
setEnable(true);
|
||||
retval = 0;
|
||||
}
|
||||
_deviceReady = true;
|
||||
setEnable(true);
|
||||
retval = 0;
|
||||
}
|
||||
}
|
||||
return retval;
|
||||
}
|
||||
|
||||
bool LedDeviceNanoleaf::discoverNanoleafDevice()
|
||||
bool LedDeviceNanoleaf::discoverDevice()
|
||||
{
|
||||
|
||||
bool isDeviceFound (false);
|
||||
|
@@ -103,7 +103,7 @@ private:
|
||||
///
|
||||
/// @return True, if Nanoleaf device was found
|
||||
///
|
||||
bool discoverNanoleafDevice();
|
||||
bool discoverDevice();
|
||||
|
||||
///
|
||||
/// Change Nanoleaf device to External Control (UDP) mode
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -19,11 +19,11 @@ struct CiColorTriangle;
|
||||
struct CiColor
|
||||
{
|
||||
/// X component.
|
||||
float x;
|
||||
double x;
|
||||
/// Y component.
|
||||
float y;
|
||||
double y;
|
||||
/// The brightness.
|
||||
float bri;
|
||||
double bri;
|
||||
|
||||
///
|
||||
/// Converts an RGB color to the Hue xy color space and brightness.
|
||||
@@ -37,7 +37,7 @@ struct CiColor
|
||||
///
|
||||
/// @return color point
|
||||
///
|
||||
static CiColor rgbToCiColor(float red, float green, float blue, CiColorTriangle colorSpace);
|
||||
static CiColor rgbToCiColor(double red, double green, double blue, CiColorTriangle colorSpace);
|
||||
|
||||
///
|
||||
/// @param p the color point to check
|
||||
@@ -53,7 +53,7 @@ struct CiColor
|
||||
///
|
||||
/// @return the cross product between p1 and p2
|
||||
///
|
||||
static float crossProduct(CiColor p1, CiColor p2);
|
||||
static double crossProduct(CiColor p1, CiColor p2);
|
||||
|
||||
///
|
||||
/// @param a reference point one
|
||||
@@ -73,11 +73,11 @@ struct CiColor
|
||||
///
|
||||
/// @return the distance between the two points
|
||||
///
|
||||
static float getDistanceBetweenTwoPoints(CiColor p1, CiColor p2);
|
||||
static double getDistanceBetweenTwoPoints(CiColor p1, CiColor p2);
|
||||
};
|
||||
|
||||
bool operator==(CiColor p1, CiColor p2);
|
||||
bool operator!=(CiColor p1, CiColor p2);
|
||||
bool operator==(const CiColor& p1, const CiColor& p2);
|
||||
bool operator!=(const CiColor& p1, const CiColor& p2);
|
||||
|
||||
/**
|
||||
* Color triangle to define an available color space for the hue lamps.
|
||||
@@ -87,74 +87,11 @@ struct CiColorTriangle
|
||||
CiColor red, green, blue;
|
||||
};
|
||||
|
||||
class PhilipsHueBridge : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
private:
|
||||
Logger* _log;
|
||||
/// QNetworkAccessManager for sending requests.
|
||||
QNetworkAccessManager manager;
|
||||
/// Ip address of the bridge
|
||||
QString host;
|
||||
/// User name for the API ("newdeveloper")
|
||||
QString username;
|
||||
/// Timer for bridge reconnect interval
|
||||
QTimer bTimer;
|
||||
|
||||
private slots:
|
||||
///
|
||||
/// Receive all replies and check for error, schedule reconnect on issues
|
||||
/// Emits newLights() on success when triggered from connect()
|
||||
///
|
||||
void resolveReply(QNetworkReply* reply);
|
||||
|
||||
public slots:
|
||||
///
|
||||
/// Connect to bridge to check availbility and user
|
||||
///
|
||||
void bConnect(void);
|
||||
|
||||
signals:
|
||||
///
|
||||
/// Emits with a QMap of current bridge light/value pairs
|
||||
///
|
||||
void newLights(QMap<quint16,QJsonObject> map);
|
||||
|
||||
public:
|
||||
PhilipsHueBridge(Logger* log, QString host, QString username);
|
||||
|
||||
///
|
||||
/// @param route the route of the POST request.
|
||||
///
|
||||
/// @param content the content of the POST request.
|
||||
///
|
||||
void post(QString route, QString content);
|
||||
};
|
||||
|
||||
/**
|
||||
* Simple class to hold the id, the latest color, the color space and the original state.
|
||||
*/
|
||||
class PhilipsHueLight
|
||||
{
|
||||
private:
|
||||
Logger* _log;
|
||||
PhilipsHueBridge* bridge;
|
||||
/// light id
|
||||
unsigned int id;
|
||||
bool on;
|
||||
unsigned int transitionTime;
|
||||
CiColor color;
|
||||
/// The model id of the hue lamp which is used to determine the color space.
|
||||
QString modelId;
|
||||
CiColorTriangle colorSpace;
|
||||
/// The json string of the original state.
|
||||
QString originalState;
|
||||
|
||||
///
|
||||
/// @param state the state as json object to set
|
||||
///
|
||||
void set(QString state);
|
||||
|
||||
public:
|
||||
// Hue system model ids (http://www.developers.meethue.com/documentation/supported-lights).
|
||||
@@ -172,32 +109,183 @@ public:
|
||||
/// @param bridge the bridge
|
||||
/// @param id the light id
|
||||
///
|
||||
PhilipsHueLight(Logger* log, PhilipsHueBridge* bridge, unsigned int id, QJsonObject values);
|
||||
PhilipsHueLight(Logger* log, unsigned int id, QJsonObject values, unsigned int ledidx);
|
||||
~PhilipsHueLight();
|
||||
|
||||
///
|
||||
/// @param on
|
||||
///
|
||||
void setOn(bool on);
|
||||
void setOnOffState(bool on);
|
||||
|
||||
///
|
||||
/// @param transitionTime the transition time between colors in multiples of 100 ms
|
||||
///
|
||||
void setTransitionTime(unsigned int transitionTime);
|
||||
void setTransitionTime(unsigned int _transitionTime);
|
||||
|
||||
///
|
||||
/// @param color the color to set
|
||||
/// @param brightnessFactor the factor to apply to the CiColor#bri value
|
||||
///
|
||||
void setColor(CiColor color, float brightnessFactor = 1.0f);
|
||||
void setColor(const CiColor& _color);
|
||||
|
||||
|
||||
unsigned int getId() const;
|
||||
|
||||
bool getOnOffState() const;
|
||||
unsigned int getTransitionTime() const;
|
||||
CiColor getColor() const;
|
||||
|
||||
///
|
||||
/// @return the color space of the light determined by the model id reported by the bridge.
|
||||
CiColorTriangle getColorSpace() const;
|
||||
|
||||
|
||||
QString getOriginalState();
|
||||
|
||||
|
||||
private:
|
||||
|
||||
void saveOriginalState(const QJsonObject& values);
|
||||
|
||||
Logger* _log;
|
||||
/// light id
|
||||
unsigned int _id;
|
||||
unsigned int _ledidx;
|
||||
bool _on;
|
||||
unsigned int _transitionTime;
|
||||
CiColor _color;
|
||||
/// darkes blue color in hue lamp GAMUT = black
|
||||
CiColor _colorBlack;
|
||||
/// The model id of the hue lamp which is used to determine the color space.
|
||||
QString _modelId;
|
||||
QString _lightname;
|
||||
CiColorTriangle _colorSpace;
|
||||
|
||||
/// The json string of the original state.
|
||||
QJsonObject _originalStateJSON;
|
||||
|
||||
QString _originalState;
|
||||
CiColor _originalColor;
|
||||
};
|
||||
|
||||
class LedDevicePhilipsHueBridge : public LedDevice
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
|
||||
explicit LedDevicePhilipsHueBridge(const QJsonObject &deviceConfig);
|
||||
~LedDevicePhilipsHueBridge();
|
||||
|
||||
///
|
||||
/// Sets configuration
|
||||
///
|
||||
/// @param deviceConfig the json device config
|
||||
/// @return true if success
|
||||
virtual bool init(const QJsonObject &deviceConfig) override;
|
||||
|
||||
|
||||
|
||||
///
|
||||
/// @param route the route of the POST request.
|
||||
///
|
||||
/// @param content the content of the POST request.
|
||||
///
|
||||
void post(const QString& route, const QString& content);
|
||||
|
||||
void setLightState(unsigned int lightId = 0, QString state = "");
|
||||
|
||||
const QMap<quint16,QJsonObject>& getLightMap();
|
||||
|
||||
// /// Set device in error state
|
||||
// ///
|
||||
// /// @param errorMsg The error message to be logged
|
||||
// ///
|
||||
// virtual void setInError( const QString& errorMsg) override;
|
||||
|
||||
public slots:
|
||||
///
|
||||
/// Connect to bridge to check availbility and user
|
||||
///
|
||||
virtual int open(void) override;
|
||||
virtual int open( const QString& hostname, const QString& port, const QString& username );
|
||||
|
||||
//signals:
|
||||
// ///
|
||||
// /// Emits with a QMap of current bridge light/value pairs
|
||||
// ///
|
||||
// void newLights(QMap<quint16,QJsonObject> map);
|
||||
protected:
|
||||
|
||||
/// Ip address of the bridge
|
||||
QString _hostname;
|
||||
QString _api_port;
|
||||
/// User name for the API ("newdeveloper")
|
||||
QString _username;
|
||||
|
||||
private:
|
||||
|
||||
///
|
||||
/// Discover device via SSDP identifiers
|
||||
///
|
||||
/// @return True, if device was found
|
||||
///
|
||||
bool discoverDevice();
|
||||
|
||||
///
|
||||
/// Get command as url
|
||||
///
|
||||
/// @param host Hostname or IP
|
||||
/// @param port IP-Port
|
||||
/// @param _auth_token Authorization token
|
||||
/// @param Endpoint command for request
|
||||
/// @return Url to execute endpoint/command
|
||||
///
|
||||
QString getUrl(QString host, QString port, QString auth_token, QString endpoint) const;
|
||||
|
||||
///
|
||||
/// Execute GET request
|
||||
///
|
||||
/// @param url GET request for url
|
||||
/// @return Response from device
|
||||
///
|
||||
QJsonDocument getJson(QString url);
|
||||
|
||||
///
|
||||
/// Execute PUT request
|
||||
///
|
||||
/// @param Url for PUT request
|
||||
/// @param json Command for request
|
||||
/// @return Response from device
|
||||
///
|
||||
QJsonDocument putJson(QString url, QString json);
|
||||
|
||||
///
|
||||
/// Handle replys for GET and PUT requests
|
||||
///
|
||||
/// @param reply Network reply
|
||||
/// @return Response for request, if no error
|
||||
///
|
||||
QJsonDocument handleReply(QNetworkReply* const &reply );
|
||||
|
||||
/// QNetworkAccessManager for sending requests.
|
||||
QNetworkAccessManager* _networkmanager;
|
||||
|
||||
//Philips Hue Bridge details
|
||||
QString _deviceModel;
|
||||
QString _deviceFirmwareVersion;
|
||||
QString _deviceAPIVersion;
|
||||
|
||||
uint _api_major;
|
||||
uint _api_minor;
|
||||
uint _api_patch;
|
||||
|
||||
bool _isHueEntertainmentReady;
|
||||
|
||||
QMap<quint16,QJsonObject> _lightsMap;
|
||||
};
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Implementation for the Philips Hue system.
|
||||
*
|
||||
@@ -206,7 +294,7 @@ public:
|
||||
*
|
||||
* @author ntim (github), bimsarck (github)
|
||||
*/
|
||||
class LedDevicePhilipsHue: public LedDevice
|
||||
class LedDevicePhilipsHue: public LedDevicePhilipsHueBridge
|
||||
{
|
||||
|
||||
Q_OBJECT
|
||||
@@ -227,20 +315,66 @@ public:
|
||||
/// constructs leddevice
|
||||
static LedDevice* construct(const QJsonObject &deviceConfig);
|
||||
|
||||
public slots:
|
||||
/// thread start
|
||||
virtual void start() override;
|
||||
///
|
||||
/// Sets configuration
|
||||
///
|
||||
/// @param deviceConfig the json device config
|
||||
/// @return true if success
|
||||
virtual bool init(const QJsonObject &deviceConfig) override;
|
||||
|
||||
/// Switch the device on
|
||||
virtual int switchOn() override;
|
||||
|
||||
/// Switch the device off
|
||||
virtual int switchOff() override;
|
||||
|
||||
private slots:
|
||||
/// creates new PhilipsHueLight(s) based on user lightid with bridge feedback
|
||||
///
|
||||
/// @param map Map of lightid/value pairs of bridge
|
||||
///
|
||||
void newLights(QMap<quint16, QJsonObject> map);
|
||||
|
||||
void stateChanged(bool newState);
|
||||
unsigned int getLightsCount() const { return _lightsCount; }
|
||||
void setLightsCount( unsigned int lightsCount);
|
||||
|
||||
void setOnOffState(PhilipsHueLight& light, bool on);
|
||||
void setTransitionTime(PhilipsHueLight& light, unsigned int transitionTime);
|
||||
void setColor(PhilipsHueLight& light, const CiColor& color, double brightnessFactor);
|
||||
void setState(PhilipsHueLight& light, bool on, const CiColor& color, double brightnessFactor, unsigned int transitionTime);
|
||||
|
||||
void restoreOriginalState();
|
||||
|
||||
public slots:
|
||||
|
||||
///
|
||||
/// Closes the output device.
|
||||
/// Includes switching-off the device and stopping refreshes
|
||||
///
|
||||
virtual void close() override;
|
||||
|
||||
private slots:
|
||||
/// creates new PhilipsHueLight(s) based on user lightid with bridge feedback
|
||||
///
|
||||
/// @param map Map of lightid/value pairs of bridge
|
||||
///
|
||||
void updateLights(QMap<quint16, QJsonObject> map);
|
||||
|
||||
protected:
|
||||
|
||||
///
|
||||
/// Opens and initiatialises the output device
|
||||
///
|
||||
/// @return Zero on succes (i.e. device is ready and enabled) else negative
|
||||
///
|
||||
virtual int open() override;
|
||||
|
||||
///
|
||||
/// Get Philips Hue device details and configuration
|
||||
///
|
||||
/// @return True, if Nanoleaf device capabilities fit configuration
|
||||
///
|
||||
bool initLeds();
|
||||
|
||||
///
|
||||
/// Writes the RGB-Color values to the leds.
|
||||
///
|
||||
@@ -249,21 +383,27 @@ protected:
|
||||
/// @return Zero on success else negative
|
||||
///
|
||||
virtual int write(const std::vector<ColorRgb> & ledValues) override;
|
||||
bool init(const QJsonObject &deviceConfig) override;
|
||||
|
||||
private:
|
||||
/// bridge class
|
||||
PhilipsHueBridge* _bridge;
|
||||
|
||||
int writeSingleLights(const std::vector<ColorRgb>& ledValues);
|
||||
|
||||
///
|
||||
bool switchOffOnBlack;
|
||||
bool _switchOffOnBlack;
|
||||
/// The brightness factor to multiply on color change.
|
||||
float brightnessFactor;
|
||||
/// Transition time in multiples of 100 ms.
|
||||
double _brightnessFactor;
|
||||
/// Transition time in multiples of 100 ms.
|
||||
/// The default of the Hue lights is 400 ms, but we may want it snapier.
|
||||
int transitionTime;
|
||||
unsigned int _transitionTime;
|
||||
|
||||
bool _isRestoreOrigState;
|
||||
|
||||
/// Array of the light ids.
|
||||
std::vector<unsigned int> lightIds;
|
||||
std::vector<unsigned int> _lightIds;
|
||||
/// Array to save the lamps.
|
||||
std::vector<PhilipsHueLight> lights;
|
||||
std::vector<PhilipsHueLight> _lights;
|
||||
|
||||
unsigned int _lightsCount;
|
||||
|
||||
|
||||
};
|
||||
|
Reference in New Issue
Block a user