led_timer.cpp 223 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #include "led_timer.h" LedTimer::LedTimer() : Timer(1), m_on(false) { } bool LedTimer::fire() { m_on = !m_on; KDColor ledColor = m_on ? KDColorRed : KDColorBlack; Ion::LED::setColor(ledColor); return false; }