2013-11-11 21:07:24 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <string>
|
|
|
|
|
2013-11-14 19:04:17 +01:00
|
|
|
// Qt includes
|
|
|
|
#include <QTimer>
|
|
|
|
|
2013-11-11 21:07:24 +01:00
|
|
|
// hyperion incluse
|
|
|
|
#include "LedRs232Device.h"
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Implementation of the LedDevice interface for writing to an Adalight led device.
|
|
|
|
///
|
2014-05-04 11:41:55 +02:00
|
|
|
class LedDeviceAdalight : public LedRs232Device
|
2013-11-11 21:07:24 +01:00
|
|
|
{
|
2013-11-14 19:04:17 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
2013-11-11 21:07:24 +01:00
|
|
|
public:
|
|
|
|
///
|
|
|
|
/// Constructs the LedDevice for attached Adalight device
|
|
|
|
///
|
|
|
|
/// @param outputDevice The name of the output device (eg '/dev/ttyS0')
|
|
|
|
/// @param baudrate The used baudrate for writing to the output device
|
|
|
|
///
|
2014-05-04 11:31:13 +02:00
|
|
|
LedDeviceAdalight(const std::string& outputDevice, const unsigned baudrate, int delayAfterConnect_ms);
|
2013-11-11 21:07:24 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Writes the led color values to the led-device
|
|
|
|
///
|
|
|
|
/// @param ledValues The color-value per led
|
|
|
|
/// @return Zero on succes else negative
|
|
|
|
///
|
2013-11-12 07:52:00 +01:00
|
|
|
virtual int write(const std::vector<ColorRgb> & ledValues);
|
2013-11-11 21:07:24 +01:00
|
|
|
|
|
|
|
/// Switch the leds off
|
|
|
|
virtual int switchOff();
|
|
|
|
|
2013-11-14 19:04:17 +01:00
|
|
|
private slots:
|
|
|
|
/// Write the last data to the leds again
|
|
|
|
void rewriteLeds();
|
|
|
|
|
2013-11-11 21:07:24 +01:00
|
|
|
private:
|
|
|
|
/// The buffer containing the packed RGB values
|
|
|
|
std::vector<uint8_t> _ledBuffer;
|
2013-11-14 19:04:17 +01:00
|
|
|
|
|
|
|
/// Timer object which makes sure that led data is written at a minimum rate
|
|
|
|
/// The Adalight device will switch off when it does not receive data at least
|
|
|
|
/// every 15 seconds
|
|
|
|
QTimer _timer;
|
2013-11-11 21:07:24 +01:00
|
|
|
};
|