I did do a search before singing up and posting a new topic. Hopefully I did not miss this already posted somewhere. Using Arduino 2.3.6 ProffieOS7.15. After uploading build I no longer have the Off+Clash option on the saber to enable the volume menu. The option to triple click while off to report the battery voltage is also not there. I am figuring it is one of those simple define things that I just can’t seem to discover. Other than that, everything appears to be working as advertised. I can verify that the presets are the same exact presets that worked with these features before the build. Exact copy/paste. No Compile errors. I did also reach out to the vendor and ask for the original config file this morning. I “simply” added a few sound fonts on the back end. Hoping the vendor will come back pretty quickly or maybe someone here can turn me on to the piece of the puzzle I am missing.
Disclaimer - this is my first build. As an IT professional of twenty+ years, I have done due diligence searching, following instructions exactly as written, and lots of trial and error before asking… Any assistance would be greatly appreciated.
Here is my top config…
#ifdef CONFIG_TOP
#include "proffieboard_v2_config.h"
#define NUM_BLADES 1
#define NUM_BUTTONS 1
#define VOLUME 1500
const unsigned int maxLedsPerStrip = 144;
#define CLASH_THRESHOLD_G 2.5
#define ENABLE_AUDIO
#define ENABLE_MOTION
#define ENABLE_WS2811
#define ENABLE_SD
#define MOTION_TIMEOUT 60 * 5 * 1000
#define IDLE_OFF_TIME 60 * 5 * 1000
#define NO_REPEAT_RANDOM
#define DISABLE_DIAGNOSTIC_COMMANDS
#define ENABLE_ALL_EDIT_OPTIONS
#define SAVE_STATE
#define SAVE_PRESET
#define COLOR_CHANGE_DIRECT
#define VOLUME_MENU
#define FETT263_MOTION_WAKE_POWER_BUTTON
#define FETT263_TWIST_ON
#define FETT263_TWIST_OFF
#define FETT263_SWING_ON
#define FETT263_THRUST_ON
#define FETT263_STAB_ON
#define FETT263_MULTI_PHASE
#define FETT263_FORCE_PUSH_ALWAYS_ON
#define FETT263_FORCE_PUSH_LENGTH 5
#define FETT263_SAY_COLOR_LIST
#define FETT263_SAY_BATTERY_VOLTS
#define FETT263_SAY_BATTERY_PERCENT
#define FETT263_QUOTE_PLAYER_START_ON
#define FETT263_VOLUME_MENU
#define FETT263_EDIT_MODE_MENU
#define FETT263_LOCKUP_DELAY 200
bottom config…
BladeConfig blades[] = {
{ 0, WS281XBladePtr<129, bladePin, Color8::GRB, PowerPINS<bladePowerPin2, bladePowerPin3> >(), CONFIGARRAY(presets) },
};
#endif
#ifdef CONFIG_BUTTONS
Button PowerButton(BUTTON_POWER, powerButtonPin, "pow");
#endif