145 lines
4.5 KiB
C++
145 lines
4.5 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2014 Michael Zanetti <michael_zanetti@gmx.net> *
|
|
* Copyright (C) 2015 Simon Stuerz <simon.stuerz@guh.guru> *
|
|
* *
|
|
* This file is part of guh. *
|
|
* *
|
|
* Guh is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation, version 2 of the License. *
|
|
* *
|
|
* Guh is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with guh. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef HUELIGHT_H
|
|
#define HUELIGHT_H
|
|
|
|
#include <QObject>
|
|
#include <QDebug>
|
|
#include <QColor>
|
|
#include <QPoint>
|
|
#include <QHostAddress>
|
|
#include <QNetworkRequest>
|
|
#include <QJsonDocument>
|
|
|
|
#include "typeutils.h"
|
|
#include "types/action.h"
|
|
|
|
class HueLight : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
|
|
enum ColorMode {
|
|
ColorModeHS,
|
|
ColorModeXY,
|
|
ColorModeCT
|
|
};
|
|
|
|
explicit HueLight(const int &lightId, const QHostAddress &hostAddress, const QString &name, const QString &apiKey, const QString &modelId, const DeviceId &bridgeId, QObject *parent = 0);
|
|
|
|
int lightId() const;
|
|
void setLightId(const int &lightId);
|
|
|
|
DeviceId bridgeId() const;
|
|
void setBridgeId(const DeviceId &bridgeDeviceId);
|
|
|
|
QHostAddress hostAddress() const;
|
|
void setHostAddress(const QHostAddress hostAddress);
|
|
|
|
QString name() const;
|
|
void setName(const QString &name);
|
|
|
|
QString apiKey() const;
|
|
void setApiKey(const QString &apiKey);
|
|
|
|
QString modelId() const;
|
|
void setModelId(const QString &modelId);
|
|
|
|
QString type() const;
|
|
void setType(const QString &type);
|
|
|
|
QString softwareVersion() const;
|
|
void setSoftwareVersion(const QString &softwareVersion);
|
|
|
|
bool power() const;
|
|
void setPower(const bool &power);
|
|
|
|
bool reachable() const;
|
|
void setReachable(const bool &reachable);
|
|
|
|
quint8 brightness() const;
|
|
void setBrigtness(const quint8 brightness);
|
|
|
|
quint16 hue() const;
|
|
void setHue(const quint16 hue);
|
|
|
|
quint8 sat() const;
|
|
void setSat(const quint8 sat);
|
|
|
|
QColor color() const;
|
|
|
|
QPointF xy() const;
|
|
void setXy(const QPointF &xy);
|
|
|
|
quint16 ct() const;
|
|
void setCt(const quint16 &ct);
|
|
|
|
QString alert() const;
|
|
void setAlert(const QString &alert);
|
|
|
|
QString effect() const;
|
|
void setEffect(const QString &effect);
|
|
|
|
ColorMode colorMode() const;
|
|
void setColorMode(const ColorMode &colorMode);
|
|
|
|
// update states
|
|
void updateStates(const QVariantMap &statesMap);
|
|
void processActionResponse(const QVariantList &responseList);
|
|
|
|
// create action requests
|
|
QPair<QNetworkRequest, QByteArray> createSetPowerRequest(const bool &power);
|
|
QPair<QNetworkRequest, QByteArray> createSetColorRequest(const QColor &color);
|
|
QPair<QNetworkRequest, QByteArray> createSetBrightnessRequest(const int &brightness);
|
|
QPair<QNetworkRequest, QByteArray> createSetEffectRequest(const QString &effect);
|
|
QPair<QNetworkRequest, QByteArray> createSetTemperatureRequest(const int &colorTemp);
|
|
QPair<QNetworkRequest, QByteArray> createFlashRequest(const QString &alert);
|
|
|
|
private:
|
|
int m_lightId;
|
|
QHostAddress m_hostAddress;
|
|
QString m_name;
|
|
QString m_apiKey;
|
|
QString m_modelId;
|
|
DeviceId m_bridgeId;
|
|
QString m_type;
|
|
QString m_softwareVersion;
|
|
|
|
bool m_power;
|
|
bool m_reachable;
|
|
|
|
quint8 m_brightness;
|
|
quint16 m_hue;
|
|
quint8 m_sat;
|
|
QPointF m_xy;
|
|
quint16 m_ct;
|
|
QString m_alert;
|
|
QString m_effect;
|
|
ColorMode m_colorMode;
|
|
|
|
signals:
|
|
void stateChanged();
|
|
|
|
};
|
|
|
|
#endif // HUELIGHT_H
|