From c08222df13e3f68d2d7d2a6d18fd0b4215e38c11 Mon Sep 17 00:00:00 2001 From: Peter Slattery Date: Thu, 8 Apr 2021 22:13:03 -0400 Subject: [PATCH 1/2] settings update --- src/app/ss_blumen_lumen/blumen_lumen_settings.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/ss_blumen_lumen/blumen_lumen_settings.h b/src/app/ss_blumen_lumen/blumen_lumen_settings.h index abcb17d..9236c48 100644 --- a/src/app/ss_blumen_lumen/blumen_lumen_settings.h +++ b/src/app/ss_blumen_lumen/blumen_lumen_settings.h @@ -67,7 +67,7 @@ r64 VoiceCommandSustainDuration = 30.0; // in seconds // NOTE: This is not a symmetric operation. When we send a 'motor open' // command, we want to immediately turn the upper leds on so they appear // to have been on the whole time. -r64 TurnUpperLedsOffAfterMotorCloseCommandDelay = 5.0; // in seconds +r64 TurnUpperLedsOffAfterMotorCloseCommandDelay = 3000.0; // in seconds // NOTE: Temperature & Time of Day Based Led Brightness Settings @@ -85,7 +85,7 @@ s8 MinHighTemperature = 0; // This is multiplied by each pixels R, G, & B channels before being // sent. So if it is set to .1f, then the maximum brightness value sent // to any channel of any pixel will be 25 (255 * .1 = 25). -r32 HighTemperatureBrightnessPercent = .25f; +r32 HighTemperatureBrightnessPercent = 1.0f; // The percent brightness we set leds to when no other conditions apply // A value in the range 0:1 inclusive. @@ -101,9 +101,9 @@ r32 GlobalAnimSpeed = 1.0f; // How long it takes to fade from one animation to the next. // This is used both for transitioning between animation files -// as well as transitioning from Standard pattern mode to voice +// as well as transitioning from Standard pattern mode to voice // activated mode -r32 GlobalAnimTransitionSpeed = 5.0f; +r32 GlobalAnimTransitionSpeed = 0.1f; r64 PhrasePriorityMessageGroupingTime = 1.0f; From 29b05d8057a01071ed0f0dec4dd4e5ee1fbc2bbe Mon Sep 17 00:00:00 2001 From: Peter Slattery Date: Fri, 9 Apr 2021 12:35:58 -0400 Subject: [PATCH 2/2] edit settings --- src/app/ss_blumen_lumen/blumen_lumen_settings.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/ss_blumen_lumen/blumen_lumen_settings.h b/src/app/ss_blumen_lumen/blumen_lumen_settings.h index 1194dae..b33a224 100644 --- a/src/app/ss_blumen_lumen/blumen_lumen_settings.h +++ b/src/app/ss_blumen_lumen/blumen_lumen_settings.h @@ -50,7 +50,7 @@ global u32 LedOnTimesCount = CArrayLength(LedOnTimes); // do not edit // How long it takes to fade from the default pattern to the // voice activated pattern -r32 VoiceCommandFadeDuration = 1.0f; // in seconds +r32 VoiceCommandFadeDuration = 0.0f; // in seconds // How long the voice activated pattern will remain active // without additional voice commands, before fading back to @@ -61,7 +61,7 @@ r32 VoiceCommandFadeDuration = 1.0f; // in seconds // and then wait 30 seconds before fading back to the original // pattern. If, in that 30 second window, another voice command // is issued, lumenarium will reset the 30 second counter. -r64 VoiceCommandSustainDuration = 30.0; // in seconds +r64 VoiceCommandSustainDuration = 120.0; // in seconds // When we send a Motor Close command, we don't want the upper leds to // immediately turn off. Instead, we want to wait until the flower is @@ -77,7 +77,7 @@ r64 VoiceCommandSustainDuration = 30.0; // in seconds // NOTE: This is not a symmetric operation. When we send a 'motor open' // command, we want to immediately turn the upper leds on so they appear // to have been on the whole time. -r64 TurnUpperLedsOffAfterMotorCloseCommandDelay = 60.0; // in seconds +r64 TurnUpperLedsOffAfterMotorCloseCommandDelay = 120.0; // in seconds // NOTE: Temperature & Time of Day Based Led Brightness Settings @@ -113,12 +113,12 @@ r32 GlobalAnimSpeed = 1.0f; // This is used both for transitioning between animation files // as well as transitioning from Standard pattern mode to voice // activated mode -r32 GlobalAnimTransitionSpeed = 0.1f; +r32 GlobalAnimTransitionSpeed = 0.0f; // how long it takes to fade from the old voice hue to the new one r32 PhraseHueFadeInDuration = 2.0f; // seconds -r64 PhrasePriorityMessageGroupingTime = 1.0f; +r64 PhrasePriorityMessageGroupingTime = 0.0f; // How often should Lumenarium send its status to the python server? //