mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
5a2ef6c4a3
* multi fix commit - refactoring leddevicefactory - adalight: default for "delayAfterConnect" is 1s now - needed for most arduino's because of there special behaviour on open - fadecandy: new option for disabling configuration send - if you want to keep your fadecandy defaults - Hyperion.cpp: simplify createSmoothing discussed in #105 - smoothing: -- add option for continuous output -- when updatedelay>0 and continousOutput is disabled, buffer is flushed correctly after no input is detected * add doxygen to travis
13 lines
163 B
C++
13 lines
163 B
C++
#include <leddevice/LedDevice.h>
|
|
|
|
LedDevice::LedDevice()
|
|
: _log(Logger::getInstance("LedDevice"))
|
|
{
|
|
}
|
|
|
|
int LedDevice::open()
|
|
{
|
|
//dummy implemention
|
|
return 0;
|
|
}
|