Added debug statement to standard out

Former-commit-id: daaeb2a07931942bbeaf272775da81902169ad04
This commit is contained in:
T. van der Zwan 2014-09-25 22:31:20 +02:00
parent fbe8e0ad4e
commit 11d29d02c5
1 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,8 @@ LinearColorSmoothing::LinearColorSmoothing(
_timer.setInterval(_updateInterval);
connect(&_timer, SIGNAL(timeout()), this, SLOT(updateLeds()));
std::cout << "Created linear-smoothing(interval_ms=" << _updateInterval << ";settlingTime_ms=" << settlingTime_ms << ";updateDelay=" << _outputDelay << std::endl;
}
LinearColorSmoothing::~LinearColorSmoothing()