summaryrefslogtreecommitdiffstats
path: root/quantum/rgblight.c
diff options
context:
space:
mode:
authorJordi Orlando <0xdec@users.noreply.github.com>2016-07-26 21:46:30 +0200
committerGitHub <noreply@github.com>2016-07-26 21:46:30 +0200
commit899c88cd8bf024792760fcf3ee8be6fed13fb315 (patch)
tree108d1adbf77bdde43cec4888116bf2b236b396b5 /quantum/rgblight.c
parent3a860c4bc210857f03ef9fae5043d6d5736d140d (diff)
downloadqmk_firmware-899c88cd8bf024792760fcf3ee8be6fed13fb315.tar.gz
qmk_firmware-899c88cd8bf024792760fcf3ee8be6fed13fb315.tar.xz
Increament -> increment
Diffstat (limited to 'quantum/rgblight.c')
-rw-r--r--quantum/rgblight.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/quantum/rgblight.c b/quantum/rgblight.c
index 1b3c576d1..c2841b851 100644
--- a/quantum/rgblight.c
+++ b/quantum/rgblight.c
@@ -453,9 +453,9 @@ void rgblight_effect_snake(uint8_t interval) {
static uint16_t last_timer = 0;
uint8_t i, j;
int8_t k;
- int8_t increament = 1;
+ int8_t increment = 1;
if (interval % 2) {
- increament = -1;
+ increment = -1;
}
if (timer_elapsed(last_timer) < pgm_read_byte(&RGBLED_SNAKE_INTERVALS[interval / 2])) {
return;
@@ -466,7 +466,7 @@ void rgblight_effect_snake(uint8_t interval) {
led[i].g = 0;
led[i].b = 0;
for (j = 0; j < RGBLIGHT_EFFECT_SNAKE_LENGTH; j++) {
- k = pos + j * increament;
+ k = pos + j * increment;
if (k < 0) {
k = k + RGBLED_NUM;
}
@@ -476,7 +476,7 @@ void rgblight_effect_snake(uint8_t interval) {
}
}
rgblight_set();
- if (increament == 1) {
+ if (increment == 1) {
if (pos - 1 < 0) {
pos = RGBLED_NUM - 1;
} else {
@@ -492,7 +492,7 @@ void rgblight_effect_knight(uint8_t interval) {
uint8_t i, j, cur;
int8_t k;
struct cRGB preled[RGBLED_NUM];
- static int8_t increament = -1;
+ static int8_t increment = -1;
if (timer_elapsed(last_timer) < pgm_read_byte(&RGBLED_KNIGHT_INTERVALS[interval])) {
return;
}
@@ -502,7 +502,7 @@ void rgblight_effect_knight(uint8_t interval) {
preled[i].g = 0;
preled[i].b = 0;
for (j = 0; j < RGBLIGHT_EFFECT_KNIGHT_LENGTH; j++) {
- k = pos + j * increament;
+ k = pos + j * increment;
if (k < 0) {
k = 0;
}
@@ -523,17 +523,17 @@ void rgblight_effect_knight(uint8_t interval) {
}
}
rgblight_set();
- if (increament == 1) {
+ if (increment == 1) {
if (pos - 1 < 0 - RGBLIGHT_EFFECT_KNIGHT_LENGTH) {
pos = 0 - RGBLIGHT_EFFECT_KNIGHT_LENGTH;
- increament = -1;
+ increment = -1;
} else {
pos -= 1;
}
} else {
if (pos + 1 > RGBLED_NUM + RGBLIGHT_EFFECT_KNIGHT_LENGTH) {
pos = RGBLED_NUM + RGBLIGHT_EFFECT_KNIGHT_LENGTH - 1;
- increament = 1;
+ increment = 1;
} else {
pos += 1;
}