summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/settings/SettingBluetooth.h
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-04-10 11:00:50 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-04-10 11:19:45 (GMT)
commit4f46da35b4a1b0a708594cb91343b921928d6a01 (patch)
tree91d20252a8ff11648f9449cebaa29702ce0a6438 /src/displayapp/screens/settings/SettingBluetooth.h
parent9f68f5b227ad3c83130d7cc521c80b6caf974466 (diff)
Bluetooth Passkey Toggle setting
Diffstat (limited to 'src/displayapp/screens/settings/SettingBluetooth.h')
-rw-r--r--src/displayapp/screens/settings/SettingBluetooth.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/displayapp/screens/settings/SettingBluetooth.h b/src/displayapp/screens/settings/SettingBluetooth.h
index 12bb459..63cdd39 100644
--- a/src/displayapp/screens/settings/SettingBluetooth.h
+++ b/src/displayapp/screens/settings/SettingBluetooth.h
@@ -19,11 +19,13 @@ namespace Pinetime {
void OnBluetoothEnabled(lv_obj_t* object, lv_event_t event);
void OnBluetoothDisabled(lv_obj_t* object, lv_event_t event);
+ void OnBluetoothPasskeyEnableToggle(lv_obj_t* object, lv_event_t event);
private:
Controllers::Settings& settingsController;
- lv_obj_t* cbEnabled;
lv_obj_t* cbDisabled;
+ lv_obj_t* cbEnabled;
+ lv_obj_t* cbPasskey;
bool priorMode;
};
}