134 lines
5.4 KiB
C++
134 lines
5.4 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2019 Bernhard Trinnes <bernhard.trinnes@nymea.io> *
|
|
* *
|
|
* This file is part of nymea. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Lesser General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2.1 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library 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 *
|
|
* Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
* License along with this library; If not, see *
|
|
* <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef DEVICEPLUGINWS2812FX_H
|
|
#define DEVICEPLUGINWS2812FX_H
|
|
|
|
#define FX_MODE_STATIC 0
|
|
#define FX_MODE_BLINK 1
|
|
#define FX_MODE_BREATH 2
|
|
#define FX_MODE_COLOR_WIPE 3
|
|
#define FX_MODE_COLOR_WIPE_INV 4
|
|
#define FX_MODE_COLOR_WIPE_REV 5
|
|
#define FX_MODE_COLOR_WIPE_REV_INV 6
|
|
#define FX_MODE_COLOR_WIPE_RANDOM 7
|
|
#define FX_MODE_RANDOM_COLOR 8
|
|
#define FX_MODE_SINGLE_DYNAMIC 9
|
|
#define FX_MODE_MULTI_DYNAMIC 10
|
|
#define FX_MODE_RAINBOW 11
|
|
#define FX_MODE_RAINBOW_CYCLE 12
|
|
#define FX_MODE_SCAN 13
|
|
#define FX_MODE_DUAL_SCAN 14
|
|
#define FX_MODE_FADE 15
|
|
#define FX_MODE_THEATER_CHASE 16
|
|
#define FX_MODE_THEATER_CHASE_RAINBOW 17
|
|
#define FX_MODE_RUNNING_LIGHTS 18
|
|
#define FX_MODE_TWINKLE 19
|
|
#define FX_MODE_TWINKLE_RANDOM 20
|
|
#define FX_MODE_TWINKLE_FADE 21
|
|
#define FX_MODE_TWINKLE_FADE_RANDOM 22
|
|
#define FX_MODE_SPARKLE 23
|
|
#define FX_MODE_FLASH_SPARKLE 24
|
|
#define FX_MODE_HYPER_SPARKLE 25
|
|
#define FX_MODE_STROBE 26
|
|
#define FX_MODE_STROBE_RAINBOW 27
|
|
#define FX_MODE_MULTI_STROBE 28
|
|
#define FX_MODE_BLINK_RAINBOW 29
|
|
#define FX_MODE_CHASE_WHITE 30
|
|
#define FX_MODE_CHASE_COLOR 31
|
|
#define FX_MODE_CHASE_RANDOM 32
|
|
#define FX_MODE_CHASE_RAINBOW 33
|
|
#define FX_MODE_CHASE_FLASH 34
|
|
#define FX_MODE_CHASE_FLASH_RANDOM 35
|
|
#define FX_MODE_CHASE_RAINBOW_WHITE 36
|
|
#define FX_MODE_CHASE_BLACKOUT 37
|
|
#define FX_MODE_CHASE_BLACKOUT_RAINBOW 38
|
|
#define FX_MODE_COLOR_SWEEP_RANDOM 39
|
|
#define FX_MODE_RUNNING_COLOR 40
|
|
#define FX_MODE_RUNNING_RED_BLUE 41
|
|
#define FX_MODE_RUNNING_RANDOM 42
|
|
#define FX_MODE_LARSON_SCANNER 43
|
|
#define FX_MODE_COMET 44
|
|
#define FX_MODE_FIREWORKS 45
|
|
#define FX_MODE_FIREWORKS_RANDOM 46
|
|
#define FX_MODE_MERRY_CHRISTMAS 47
|
|
#define FX_MODE_FIRE_FLICKER 48
|
|
#define FX_MODE_FIRE_FLICKER_SOFT 49
|
|
#define FX_MODE_FIRE_FLICKER_INTENSE 50
|
|
#define FX_MODE_CIRCUS_COMBUSTUS 51
|
|
#define FX_MODE_HALLOWEEN 52
|
|
#define FX_MODE_BICOLOR_CHASE 53
|
|
#define FX_MODE_TRICOLOR_CHASE 54
|
|
#define FX_MODE_ICU 55
|
|
#define FX_MODE_CUSTOM 56 // keep this for backward compatiblity
|
|
#define FX_MODE_CUSTOM_0 56 // custom modes need to go at the end
|
|
#define FX_MODE_CUSTOM_1 57
|
|
#define FX_MODE_CUSTOM_2 58
|
|
#define FX_MODE_CUSTOM_3 59
|
|
|
|
#include "devices/deviceplugin.h"
|
|
|
|
#include <QTimer>
|
|
#include <QSerialPort>
|
|
#include <QSerialPortInfo>
|
|
|
|
class DevicePluginWs2812fx : public DevicePlugin
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PLUGIN_METADATA(IID "io.nymea.DevicePlugin" FILE "devicepluginws2812fx.json")
|
|
Q_INTERFACES(DevicePlugin)
|
|
|
|
public:
|
|
explicit DevicePluginWs2812fx();
|
|
|
|
void setupDevice(DeviceSetupInfo *info) override;
|
|
void deviceRemoved(Device *device) override;
|
|
void discoverDevices(DeviceDiscoveryInfo *info) override;
|
|
void executeAction(DeviceActionInfo *info) override;
|
|
|
|
private:
|
|
enum CommandType {
|
|
Color,
|
|
Speed,
|
|
Brightness,
|
|
Mode
|
|
};
|
|
|
|
QHash<Device *, QSerialPort *> m_serialPorts;
|
|
QList<QString> m_usedInterfaces;
|
|
QHash<CommandType, DeviceActionInfo*> m_pendingActions;
|
|
|
|
QTimer *m_reconnectTimer = nullptr;
|
|
void sendCommand(DeviceActionInfo *info, const QByteArray &command, CommandType commandType);
|
|
|
|
private slots:
|
|
void onReadyRead();
|
|
void onReconnectTimer();
|
|
void onSerialError(QSerialPort::SerialPortError error);
|
|
|
|
signals:
|
|
|
|
};
|
|
|
|
#endif // DEVICEPLUGINWS2812FX_H
|