diff options
| author | petter <39340152+petterhs@users.noreply.github.com> | 2021-01-27 12:45:06 (GMT) |
|---|---|---|
| committer | petter <39340152+petterhs@users.noreply.github.com> | 2021-01-27 16:07:46 (GMT) |
| commit | d4c31bcbbe2f8b6d2e6c45203193745f9cb2a41b (patch) | |
| tree | fb77f1c235e86233b5f6c6046dbfe646749467fa /src/components/ble/AlertNotificationService.h | |
| parent | 523398d24a326a36784e9b28c9f3309a17df9363 (diff) | |
add mute button and functionality for call notification + new button icons
Diffstat (limited to 'src/components/ble/AlertNotificationService.h')
| -rw-r--r-- | src/components/ble/AlertNotificationService.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/ble/AlertNotificationService.h b/src/components/ble/AlertNotificationService.h index 612a8a3..caad7a2 100644 --- a/src/components/ble/AlertNotificationService.h +++ b/src/components/ble/AlertNotificationService.h @@ -29,10 +29,12 @@ namespace Pinetime { void AcceptIncomingCall(); void RejectIncomingCall(); + void MuteIncomingCall(); enum class IncomingCallResponses : uint8_t { Reject = 0x00, - Answer = 0x01 + Answer = 0x01, + Mute = 0x02 }; private: |
