Added settings for watch debug mode and to switch the spectrum display on the watch off to save processor power.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- The ListPreference data is defined in pebble_datasource_values.xml -->
|
||||
<PreferenceScreen
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<PreferenceCategory android:title="User Interface Settings">
|
||||
@@ -19,6 +20,22 @@
|
||||
android:title="Manual Alarm Period (sec)" />
|
||||
</PreferenceCategory>
|
||||
<PreferenceCategory android:title="Seizure Detector Settings">
|
||||
<ListPreference
|
||||
android:key="PebbleDebug"
|
||||
android:title="Seizure Detector Debug Mode"
|
||||
android:summary="Set Debug mode on or off."
|
||||
android:entries="@array/pebble_debug_list"
|
||||
android:entryValues="@array/pebble_debug_values"
|
||||
android:defaultValue="0"
|
||||
android:dialogTitle="Select Debug Mode" />
|
||||
<ListPreference
|
||||
android:key="PebbleDisplaySpectrum"
|
||||
android:title="Spectrum display Mode"
|
||||
android:summary="Set Display Spectrum mode on or off."
|
||||
android:entries="@array/pebble_display_spectrum_list"
|
||||
android:entryValues="@array/pebble_display_spectrum_values"
|
||||
android:defaultValue="0"
|
||||
android:dialogTitle="Select Display Spectrum Mode" />
|
||||
<ListPreference
|
||||
android:key="PebbleSdMode"
|
||||
android:title="Seizure Detector Mode"
|
||||
|
||||
Reference in New Issue
Block a user