aboutsummaryrefslogtreecommitdiffstats
path: root/arduino/libraries/Bluefruit52Lib/src/clients/BLEAncs.h
blob: 05d8e2987bd817a0d3322384a25e5cf471767c4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/**************************************************************************/
/*!
    @file     BLEAncs.h
    @author   hathach (tinyusb.org)

    @section LICENSE

    Software License Agreement (BSD License)

    Copyright (c) 2018, Adafruit Industries (adafruit.com)
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:
    1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
    3. Neither the name of the copyright holders nor the
    names of its contributors may be used to endorse or promote products
    derived from this software without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
    EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
    DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**************************************************************************/
#ifndef BLEANCS_H_
#define BLEANCS_H_

#include "../BLEClientCharacteristic.h"
#include "bluefruit_common.h"

#include "BLEClientService.h"

extern const uint8_t BLEANCS_UUID_SERVICE[];
extern const uint8_t BLEANCS_UUID_CHR_CONTROL[];
extern const uint8_t BLEANCS_UUID_CHR_NOTIFICATION[];
extern const uint8_t BLEANCS_UUID_CHR_DATA[];

// Category ID
enum
{
  ANCS_CAT_OTHER                 ,
  ANCS_CAT_INCOMING_CALL         ,
  ANCS_CAT_MISSED_CALL           ,
  ANCS_CAT_VOICE_MAIL            ,
  ANCS_CAT_SOCIAL                ,
  ANCS_CAT_SCHEDULE              ,
  ANCS_CAT_EMAIL                 ,
  ANCS_CAT_NEWS                  ,
  ANCS_CAT_HEALTH_AND_FITNESS    ,
  ANCS_CAT_BUSSINESS_AND_FINANCE ,
  ANCS_CAT_LOCATION              ,
  ANCS_CAT_ENTERTAINMENT
};

// Event ID
enum
{
  ANCS_EVT_NOTIFICATION_ADDED    ,
  ANCS_EVT_NOTIFICATION_MODIFIED ,
  ANCS_EVT_NOTIFICATION_REMOVED
};

// Command ID
enum
{
  ANCS_CMD_GET_NOTIFICATION_ATTR ,
  ANCS_CMD_GET_APP_ATTR          ,
  ANCS_CMD_PERFORM_NOTIFICATION_ACTION
};

// Notification Attribute ID
enum
{
  ANCS_ATTR_APP_IDENTIFIER        ,
  ANCS_ATTR_TITLE                 , // followed bye 2-byte length
  ANCS_ATTR_SUBTITLE              , // followed bye 2-byte length
  ANCS_ATTR_MESSAGE               , // followed bye 2-byte length
  ANCS_ATTR_MESSAGE_SIZE          ,
  ANCS_ATTR_DATE                  , // UTC#35 yyyyMMdd'T'HHmmSS
  ANCS_ATTR_POSITIVE_ACTION_LABEL ,
  ANCS_ATTR_NEGATIVE_ACTION_LABEL ,

  ANCS_ATTR_INVALID
};

// Action ID
enum
{
  ANCS_ACTION_POSITIVE,
  ANCS_ACTION_NEGATIVE
};

// Application Attribute ID
enum
{
  ANCS_APP_ATTR_DISPLAY_NAME,

  ANCS_APP_ATTR_INVALID
};

typedef struct
{
  uint8_t  eventID;

  struct ATTR_PACKED
  {
    uint8_t silent         : 1;
    uint8_t important      : 1;
    uint8_t preExisting    : 1;
    uint8_t positiveAction : 1;
    uint8_t NegativeAction : 1;
  }eventFlags;

  uint8_t  categoryID;
  uint8_t  categoryCount;
  uint32_t uid;
} AncsNotification_t;

VERIFY_STATIC( sizeof(AncsNotification_t) == 8);

class BLEAncs : public BLEClientService
{
  public:
    typedef void (*notification_callback_t) (AncsNotification_t* notif);

    BLEAncs(void);

    virtual bool  begin(void);
    virtual bool  discover(uint16_t conn_handle);

    void setNotificationCallback(notification_callback_t fp);
    bool enableNotification(void);
    bool disableNotification(void);

    // Main commands
    uint16_t getAttribute    (uint32_t uid, uint8_t attr, void* buffer, uint16_t bufsize);
    uint16_t getAppAttribute (const char* appid, uint8_t attr, void* buffer, uint16_t bufsize);
    bool     performAction   (uint32_t uid, uint8_t actionid);

    // High Level helper
    uint16_t getAppName        (uint32_t uid, void* buffer, uint16_t bufsize);
    uint16_t getAppID          (uint32_t uid, void* buffer, uint16_t bufsize);
    uint16_t getTitle          (uint32_t uid, void* buffer, uint16_t bufsize);
    uint16_t getSubtitle       (uint32_t uid, void* buffer, uint16_t bufsize);
    uint16_t getMessage        (uint32_t uid, void* buffer, uint16_t bufsize);
    uint16_t getMessageSize    (uint32_t uid);
    uint16_t getDate           (uint32_t uid, void* buffer, uint16_t bufsize);
    uint16_t getPosActionLabel (uint32_t uid, void* buffer, uint16_t bufsize);
    uint16_t getNegActionLabel (uint32_t uid, void* buffer, uint16_t bufsize);

    bool     actPositive       (uint32_t uid);
    bool     actNegative       (uint32_t uid);

  private:
    BLEClientCharacteristic _control;
    BLEClientCharacteristic _notification;
    BLEClientCharacteristic _data;

    notification_callback_t _notif_cb;

    AdaMsg                  _adamsg;

    void _handleNotification(uint8_t* data, uint16_t len);
    void _handleData(uint8_t* data, uint16_t len);

    friend void bleancs_notification_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len);
    friend void bleancs_data_cb        (BLEClientCharacteristic* chr, uint8_t* data, uint16_t len);
};


#endif /* BLEANCS_H_ */