diff --git a/props/saber_BC_buttons.h b/props/saber_BC_buttons.h index 21b87cf9f..ac12bc229 100644 --- a/props/saber_BC_buttons.h +++ b/props/saber_BC_buttons.h @@ -715,7 +715,7 @@ class SaberBCButtons : public PROP_INHERIT_PREFIX PropBase { // Spoken Battery Level in volts case EVENTID(BUTTON_POWER, EVENT_THIRD_SAVED_CLICK_SHORT, MODE_OFF): if (!mode_volume_) { - sound_library_.SayBatteryLevel(); + sound_library_.SayTheBatteryLevelIs(); sound_library_.SayNumber(battery_monitor.battery(), SAY_DECIMAL); sound_library_.SayVolts(); STDOUT.println(battery_monitor.battery()); @@ -726,7 +726,7 @@ class SaberBCButtons : public PROP_INHERIT_PREFIX PropBase { // Spoken Battery Level in percentage case EVENTID(BUTTON_POWER, EVENT_THIRD_HELD, MODE_OFF): if (!mode_volume_) { - sound_library_.SayBatteryLevel(); + sound_library_.SayTheBatteryLevelIs(); sound_library_.SayNumber(battery_monitor.battery_percent(), SAY_WHOLE); sound_library_.SayPercent(); STDOUT.println(battery_monitor.battery_percent()); diff --git a/sound/sound_library.h b/sound/sound_library.h index 68ea71a1b..081787fc6 100644 --- a/sound/sound_library.h +++ b/sound/sound_library.h @@ -143,6 +143,7 @@ class SoundLibrary { void SayAuto() { Play("mauto.wav"); } void SayBaseColor() { Play("mbase.wav"); } void SayBatteryLevel() { Play("mbatt.wav"); } + void SayTheBatteryLevelIs() { Play("battlevl.wav"); } void SayBlastColor() { Play("mblast.wav"); } void SayCancel() { Play("mcancel.wav"); } void SayBeginChoreography() { Play("chreobgn.wav"); }