Fixing effect speed issues

This commit is contained in:
tonyxforce
2023-08-25 00:04:05 +02:00
parent 859d340d22
commit 350e20544d
2 changed files with 4 additions and 14 deletions

View File

@@ -1,10 +0,0 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"platformio.platformio-ide"
],
"unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
]
}

View File

@@ -1953,7 +1953,7 @@ uint16_t mode_jbl() {
SEGENV.aux1 = 0;
}
if (SEGENV.aux0 > SEGMENT.speed) {
if (SEGENV.aux0 > SEGMENT.custom1) {
SEGENV.aux1 = 0;
SEGENV.aux0++;
}
@@ -1963,9 +1963,9 @@ uint16_t mode_jbl() {
uint16_t counter = 0;
if (volumeSmth * 2 > (255 - SEGMENT.intensity)) {
speed = 1000;
speed = SEGMENT.speed * 50;
} else {
speed = 20;
speed = SEGMENT.speed;
};
SEGENV.step += speed;
@@ -1992,7 +1992,7 @@ uint16_t mode_jbl() {
return FRAMETIME;
} // mode_jbl()
static const char _data_FX_MODE_JBL[] PROGMEM = "JBL@Color change speed,Sensivity;!,!;!;1v;c1=8,c2=48,m12=0,si=0";
static const char _data_FX_MODE_JBL[] PROGMEM = "JBL@Effect speed,Sensivity,Color change speed;!,!;!;1v;c1=8,c2=48,m12=0,si=0";
//eight colored dots, weaving in and out of sync with each other
uint16_t mode_juggle(void) {