105 lines
3.1 KiB
C++
105 lines
3.1 KiB
C++
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of nymea-plugins.
|
|
*
|
|
* nymea-plugins 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, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* nymea-plugins 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 nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef AVEABULB_H
|
|
#define AVEABULB_H
|
|
|
|
#include <QObject>
|
|
#include <QQueue>
|
|
#include <QColor>
|
|
|
|
#include <typeutils.h>
|
|
#include <integrations/thing.h>
|
|
#include <hardware/bluetoothlowenergy/bluetoothlowenergydevice.h>
|
|
|
|
static QBluetoothUuid colorServiceUuid = QBluetoothUuid(QUuid("f815e810-456c-6761-746f-4d756e696368"));
|
|
static QBluetoothUuid colorCharacteristicUuid = QBluetoothUuid(QUuid("f815e811-456c-6761-746f-4d756e696368"));
|
|
|
|
static QBluetoothUuid imageServiceUuid = QBluetoothUuid(QUuid("f815e500-456c-6761-746f-4d756e696368"));
|
|
|
|
class AveaBulb : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum ColorMessage {
|
|
ColorMessageColor = 0x35,
|
|
ColorMessageBrightness = 0x57,
|
|
ColorMessageName = 0x58
|
|
};
|
|
Q_ENUM(ColorMessage)
|
|
|
|
explicit AveaBulb(Thing *thing, BluetoothLowEnergyDevice *bluetoothDevice, QObject *parent = nullptr);
|
|
|
|
Thing *thing();
|
|
BluetoothLowEnergyDevice *bluetoothDevice();
|
|
|
|
bool setPower(bool power);
|
|
bool setBulbName(const QString &name);
|
|
bool setColor(const QColor &color);
|
|
bool setBrightness(int percentage);
|
|
bool setFade(int fade);
|
|
|
|
bool setWhite(int white);
|
|
bool setRed(int red);
|
|
bool setGreen(int green);
|
|
bool setBlue(int blue);
|
|
|
|
bool loadValues();
|
|
bool syncColor();
|
|
|
|
private:
|
|
Thing *m_thing = nullptr;
|
|
BluetoothLowEnergyDevice *m_bluetoothDevice = nullptr;
|
|
|
|
QString m_bulbName;
|
|
QColor m_color;
|
|
int m_brightness = 0;
|
|
int m_fade = 0;
|
|
int m_white = 0;
|
|
int m_red = 0;
|
|
int m_green = 0;
|
|
int m_blue = 0;
|
|
|
|
quint16 scaleColorValueUp(int colorValue);
|
|
int scaleColorValueDown(quint16 colorValue);
|
|
|
|
private:
|
|
QLowEnergyService *m_colorService = nullptr;
|
|
QLowEnergyService *m_imageService = nullptr;
|
|
|
|
QLowEnergyCharacteristic m_imageCharacteristic;
|
|
QLowEnergyCharacteristic m_colorCharacteristic;
|
|
|
|
private slots:
|
|
void onConnectedChanged(const bool &connected);
|
|
void onServiceDiscoveryFinished();
|
|
|
|
// Color service
|
|
void onColorServiceStateChanged(const QLowEnergyService::ServiceState &state);
|
|
void onColorServiceCharacteristicChanged(const QLowEnergyCharacteristic &characteristic, const QByteArray &value);
|
|
|
|
};
|
|
|
|
#endif // AVEABULB_H
|