1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-16 18:10:17 +02:00

Soundcore: Fixed Values

This commit is contained in:
ahormann 2024-05-07 12:02:06 +02:00
parent 4db8e2e72e
commit 5fa9fffb44
2 changed files with 9 additions and 9 deletions

View File

@ -1,9 +1,9 @@
package nodomain.freeyourgadget.gadgetbridge.service.devices.soundcore;
enum TapFunction {
VOLUMEDOWN(1),
VOLUMEUP(0),
NEXT( 3),
PREVIOUS(2),
VOLUME_DOWN(1),
VOLUME_UP(0),
MEDIA_NEXT( 3),
MEDIA_PREV(2),
PLAYPAUSE(6),
VOICE_ASSISTANT(5),
AMBIENT_SOUND_CONTROL(4)

View File

@ -3452,11 +3452,11 @@
</string-array>
<string-array name="soundcore_button_function_values">
<item>@string/pref_media_volumedown_value</item>
<item>@string/pref_media_volumeup_value</item>
<item>@string/pref_media_next_value</item>
<item>@string/pref_media_previous_value</item>
<item>@string/pref_media_playpause_value</item>
<item>VOLUME_DOWN</item>
<item>VOLUME_UP</item>
<item>MEDIA_NEXT</item>
<item>MEDIA_PREV</item>
<item>PLAYPAUSE</item>
<item>VOICE_ASSISTANT</item>
<item>AMBIENT_SOUND_CONTROL</item>
</string-array>