You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
6 years ago
|
/* Kaleidoscope-LEDEffect-Breathe - A breathing effect on the LEDs, for Kaleidoscope.
|
||
|
* Copyright (C) 2017-2018 Keyboard.io, Inc.
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify it under
|
||
|
* the terms of the GNU General Public License as published by the Free Software
|
||
|
* Foundation, version 3.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||
|
* details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License along with
|
||
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
8 years ago
|
#include "Kaleidoscope-LEDEffect-Breathe.h"
|
||
6 years ago
|
|
||
7 years ago
|
namespace kaleidoscope {
|
||
6 years ago
|
namespace plugin {
|
||
6 years ago
|
void LEDBreatheEffect::TransientLEDMode::update(void) {
|
||
5 years ago
|
if (!Runtime.has_leds)
|
||
6 years ago
|
return;
|
||
|
|
||
5 years ago
|
if (!Runtime.hasTimeExpired(last_update_, update_interval_))
|
||
6 years ago
|
return;
|
||
6 years ago
|
last_update_ += update_interval_;
|
||
6 years ago
|
|
||
6 years ago
|
cRGB color = breath_compute(parent_->hue, parent_->saturation);
|
||
7 years ago
|
::LEDControl.set_all_leds_to(color);
|
||
|
}
|
||
8 years ago
|
}
|
||
6 years ago
|
}
|
||
8 years ago
|
|
||
6 years ago
|
kaleidoscope::plugin::LEDBreatheEffect LEDBreatheEffect;
|