2014-04-27 12:59:44 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
// Qt includes
|
2014-05-03 10:12:41 +02:00
|
|
|
#include <QObject>
|
2014-04-27 12:59:44 +02:00
|
|
|
#include <QString>
|
|
|
|
#include <QHttp>
|
2014-05-03 10:12:41 +02:00
|
|
|
#include <QTimer>
|
2014-04-27 12:59:44 +02:00
|
|
|
|
|
|
|
// Leddevice includes
|
|
|
|
#include <leddevice/LedDevice.h>
|
2014-04-28 14:32:37 +02:00
|
|
|
|
2014-04-27 12:59:44 +02:00
|
|
|
/**
|
|
|
|
* Implementation for the Philips Hue system.
|
2014-04-30 22:38:59 +02:00
|
|
|
*
|
2014-04-27 12:59:44 +02:00
|
|
|
* To use set the device to "philipshue".
|
|
|
|
* Uses the official Philips Hue API (http://developers.meethue.com).
|
2014-04-27 18:42:26 +02:00
|
|
|
* Framegrabber must be limited to 10 Hz / numer of lights to avoid rate limitation by the hue bridge.
|
2014-04-27 12:59:44 +02:00
|
|
|
* Create a new API user name "newdeveloper" on the bridge (http://developers.meethue.com/gettingstarted.html)
|
2014-04-30 22:38:59 +02:00
|
|
|
*
|
|
|
|
* @author ntim (github)
|
2014-04-27 12:59:44 +02:00
|
|
|
*/
|
2014-05-03 10:12:41 +02:00
|
|
|
class LedDevicePhilipsHue: public QObject, public LedDevice {
|
|
|
|
Q_OBJECT
|
2014-04-27 12:59:44 +02:00
|
|
|
public:
|
|
|
|
///
|
|
|
|
/// Constructs the device.
|
|
|
|
///
|
|
|
|
/// @param output the ip address of the bridge
|
|
|
|
///
|
|
|
|
LedDevicePhilipsHue(const std::string& output);
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Destructor of this device
|
|
|
|
///
|
|
|
|
virtual ~LedDevicePhilipsHue();
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Sends the given led-color values via put request to the hue system
|
|
|
|
///
|
|
|
|
/// @param ledValues The color-value per led
|
|
|
|
///
|
|
|
|
/// @return Zero on success else negative
|
|
|
|
///
|
|
|
|
virtual int write(const std::vector<ColorRgb> & ledValues);
|
|
|
|
|
2014-05-07 15:22:13 +02:00
|
|
|
/// Restores the original state of the leds.
|
2014-04-27 12:59:44 +02:00
|
|
|
virtual int switchOff();
|
|
|
|
|
2014-05-03 10:12:41 +02:00
|
|
|
private slots:
|
|
|
|
/// Restores the status of all lights.
|
|
|
|
void restoreStates();
|
|
|
|
|
2014-04-27 12:59:44 +02:00
|
|
|
private:
|
2014-04-28 14:32:37 +02:00
|
|
|
/// Array to save the light states.
|
|
|
|
std::vector<QString> states;
|
2014-04-27 12:59:44 +02:00
|
|
|
/// Ip address of the bridge
|
|
|
|
QString host;
|
|
|
|
/// User name for the API ("newdeveloper")
|
|
|
|
QString username;
|
2014-04-28 14:32:37 +02:00
|
|
|
/// Qhttp object for sending requests.
|
2014-04-27 12:59:44 +02:00
|
|
|
QHttp* http;
|
2014-05-03 10:12:41 +02:00
|
|
|
/// Use timer to reset lights when we got into "GRABBINGMODE_OFF".
|
|
|
|
QTimer timer;
|
2014-04-27 12:59:44 +02:00
|
|
|
|
|
|
|
///
|
2014-04-28 14:32:37 +02:00
|
|
|
/// Sends a HTTP GET request (blocking).
|
|
|
|
///
|
|
|
|
/// @param route the URI of the request
|
|
|
|
///
|
|
|
|
/// @return response of the request
|
|
|
|
///
|
|
|
|
QByteArray get(QString route);
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Sends a HTTP PUT request (non-blocking).
|
2014-04-27 12:59:44 +02:00
|
|
|
///
|
|
|
|
/// @param route the URI of the request
|
|
|
|
///
|
|
|
|
/// @param content content of the request
|
|
|
|
///
|
|
|
|
void put(QString route, QString content);
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @param lightId the id of the hue light (starting from 1)
|
|
|
|
///
|
2014-04-28 14:32:37 +02:00
|
|
|
/// @return the URI of the light state for PUT requests.
|
|
|
|
///
|
|
|
|
QString getStateRoute(unsigned int lightId);
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @param lightId the id of the hue light (starting from 1)
|
|
|
|
///
|
|
|
|
/// @return the URI of the light for GET requests.
|
2014-04-27 12:59:44 +02:00
|
|
|
///
|
|
|
|
QString getRoute(unsigned int lightId);
|
|
|
|
|
2014-04-28 14:32:37 +02:00
|
|
|
///
|
|
|
|
/// Queries the status of all lights and saves it.
|
|
|
|
///
|
|
|
|
/// @param nLights the number of lights
|
|
|
|
///
|
|
|
|
void saveStates(unsigned int nLights);
|
|
|
|
|
2014-05-07 15:22:13 +02:00
|
|
|
///
|
|
|
|
/// Switches the leds on.
|
|
|
|
///
|
|
|
|
/// @param nLights the number of lights
|
|
|
|
///
|
|
|
|
void switchOn(unsigned int nLights);
|
|
|
|
|
2014-04-28 14:32:37 +02:00
|
|
|
///
|
|
|
|
/// @return true if light states have been saved.
|
|
|
|
///
|
|
|
|
bool statesSaved();
|
|
|
|
|
2014-04-27 12:59:44 +02:00
|
|
|
///
|
|
|
|
/// Converts an RGB color to the Hue xy color space and brightness
|
|
|
|
/// https://github.com/PhilipsHue/PhilipsHueSDK-iOS-OSX/blob/master/ApplicationDesignNotes/RGB%20to%20xy%20Color%20conversion.md
|
|
|
|
///
|
|
|
|
/// @param red the red component in [0, 1]
|
|
|
|
///
|
|
|
|
/// @param green the green component in [0, 1]
|
|
|
|
///
|
|
|
|
/// @param blue the blue component in [0, 1]
|
|
|
|
///
|
|
|
|
/// @param x converted x component
|
|
|
|
///
|
|
|
|
/// @param y converted y component
|
|
|
|
///
|
|
|
|
/// @param brightness converted brightness component
|
|
|
|
///
|
2014-04-28 14:32:37 +02:00
|
|
|
void rgbToXYBrightness(float red, float green, float blue, float& x, float& y, float& brightness);
|
2014-04-27 12:59:44 +02:00
|
|
|
|
|
|
|
};
|