Volume menu using gestures

hey peeps,
I have a interesting thing, when I clash the blade and hold the power it states “no choreograph available” however when clash near the power button on my saber it triggers the volume menu as I expect it.

I can’t check serial monitor cause my usb has fallen off.
so I’m unsure as to what to provide,

the config is here.

#ifdef CONFIG_TOP
#include "proffieboard_v2_config.h"
#define NUM_BLADES 1
#define NUM_BUTTONS 1
#define VOLUME 1850
const unsigned int maxLedsPerStrip = 144;
#define CLASH_THRESHOLD_G 4.0
#define ENABLE_AUDIO
#define ENABLE_MOTION
#define ENABLE_WS2811
#define ENABLE_SD
#define ENABLE_SERIAL
#define ENABLE_ALL_EDIT_OPTIONS
#define FETT263_EDIT_MODE_MENU
#define FETT263_SAY_COLOR_LIST
#define FETT263_SAY_COLOR_LIST_CC
#define DISABLE_BASIC_PARSER_STYLES
#define DISABLE_DIAGNOSTIC_COMMANDS
#define DYNAMIC_BLADE_DIMMING 
#define DYNAMIC_BLADE_LENGTH 
#define DYNAMIC_CLASH_THRESHOLD
#define SAVE_BLADE_DIMMING 
#define SAVE_CLASH_THRESHOLD
#define INCLUDE_SSD1306
#define FILTER_CUTOFF_FREQUENCY 130
#define FILTER_ORDER 8
#define NO_REPEAT_RANDOM 
#define FETT263_SAVE_CHOREOGRAPHY
#define FETT263_DUAL_MODE_SOUND
#define FETT263_CLASH_STRENGTH_SOUND
#define FETT263_MAX_CLASH 16
#define FETT263_SAY_BATTERY_PERCENT
#define FETT263_LOCKUP_DELAY 200
#define FETT263_BM_CLASH_DETECT 6
#define FETT263_BM_DISABLE_OFF_BUTTON
#define FETT263_SWING_ON
#define FETT263_SWING_ON_SPEED 250
#define FETT263_TWIST_OFF
#define FETT263_TWIST_ON_PREON
#define FETT263_STAB_ON 
#define FETT263_SAVE_GESTURE_OFF
#define FETT263_MULTI_PHASE
#define FETT263_QUOTE_PLAYER_START_ON
#define MOTION_TIMEOUT 60 * 15 * 1000
#define SAVE_STATE
#define FETT263_MOTION_WAKE_POWER_BUTTON

#endif

#ifdef CONFIG_PROP
#include "../props/saber_fett263_buttons.h"
#endif

#ifdef CONFIG_PRESETS


};
BladeConfig blades[] = {
 { 0, WS281XBladePtr<128, bladePin, Color8::GRB, PowerPINS<bladePowerPin2, bladePowerPin3> >(), CONFIGARRAY(presets) },

};
#endif

#ifdef CONFIG_BUTTONS
Button PowerButton(BUTTON_POWER, powerButtonPin, "pow");
#endif

You must have FETT263_SAVE_CHOREOGRAPHY defined and you’re hitting the saber in a way it thinks you’re swinging (see controls for Choreography Mode).

1 Like

I was trying to check the prop file and couldn’t figure it out. with the documentation on the top part but I guess I may have missed it.

thanks for the clarification.