Files
Upsilon/apps/led_timer.cpp
Émilie Feral 1bf44a3fb0 [apps] Create a LED timer
Change-Id: Ice5a5fbf9fdf7b493597aa9542206372ebf0ae81
2017-04-07 14:52:57 +02:00

14 lines
207 B
C++

#include "led_timer.h"
LedTimer::LedTimer() :
Timer(1),
m_on(false)
{
}
void LedTimer::fire() {
m_on = !m_on;
KDColor ledColor = m_on ? KDColorRed : KDColorBlack;
Ion::LED::setColor(ledColor);
}