62dbcbfc95
This commit adds the following: Passkey pairing - passkey is displayed on watch Swipe down to clear passkey screen Connection encryption Connection bonding Automatic reconnects to a bonded peripheral Trusted device on Android Note that persisting the bond between reboots is NOT included in this commit. Therefore, rebooting the watch will cause reconnect failures. You must delete the bond from the phone to reconnect/pair.
43 lines
710 B
C++
43 lines
710 B
C++
#pragma once
|
|
|
|
namespace Pinetime {
|
|
namespace Applications {
|
|
enum class Apps {
|
|
None,
|
|
Launcher,
|
|
Clock,
|
|
SysInfo,
|
|
FirmwareUpdate,
|
|
FirmwareValidation,
|
|
NotificationsPreview,
|
|
Notifications,
|
|
Timer,
|
|
Alarm,
|
|
FlashLight,
|
|
BatteryInfo,
|
|
Music,
|
|
Paint,
|
|
Paddle,
|
|
Twos,
|
|
HeartRate,
|
|
Navigation,
|
|
StopWatch,
|
|
Metronome,
|
|
Motion,
|
|
Steps,
|
|
PassKey,
|
|
QuickSettings,
|
|
Settings,
|
|
SettingWatchFace,
|
|
SettingTimeFormat,
|
|
SettingDisplay,
|
|
SettingWakeUp,
|
|
SettingSteps,
|
|
SettingPineTimeStyle,
|
|
SettingSetDate,
|
|
SettingSetTime,
|
|
Error,
|
|
};
|
|
}
|
|
}
|