Select one of the symbols to view example projects that use it.
 
Outline
#define _GENERIC_CLIENT_H_
#include "mesh/client_common.h"
bt_mesh_generic_client_t
generic_internal_data_t
bt_mesh_generic_client_cb;
bt_mesh_gen_onoff_cli_op;
bt_mesh_gen_onoff_client_t
bt_mesh_gen_onoff_status
bt_mesh_gen_onoff_set
bt_mesh_gen_level_cli_op;
bt_mesh_gen_level_client_t
bt_mesh_gen_level_status
bt_mesh_gen_level_set
bt_mesh_gen_delta_set
bt_mesh_gen_move_set
bt_mesh_gen_def_trans_time_cli_op;
bt_mesh_gen_def_trans_time_client_t
bt_mesh_gen_def_trans_time_set
bt_mesh_gen_def_trans_time_status
bt_mesh_gen_power_onoff_cli_op;
bt_mesh_gen_power_onoff_client_t
bt_mesh_gen_onpowerup_set
bt_mesh_gen_onpowerup_status
bt_mesh_gen_power_level_cli_op;
bt_mesh_gen_power_level_client_t
bt_mesh_gen_power_level_status
bt_mesh_gen_power_last_status
bt_mesh_gen_power_default_status
bt_mesh_gen_power_range_status
bt_mesh_gen_power_level_set
bt_mesh_gen_power_default_set
bt_mesh_gen_power_range_set
bt_mesh_gen_battery_cli_op;
bt_mesh_gen_battery_client_t
bt_mesh_gen_battery_status
bt_mesh_gen_location_cli_op;
bt_mesh_gen_location_client_t
bt_mesh_gen_loc_global_status
bt_mesh_gen_loc_local_status
bt_mesh_gen_loc_global_set
bt_mesh_gen_loc_local_set
bt_mesh_gen_property_cli_op;
bt_mesh_gen_property_client_t
bt_mesh_gen_user_properties_status
bt_mesh_gen_user_property_status
bt_mesh_gen_admin_properties_status
bt_mesh_gen_admin_property_status
bt_mesh_gen_manu_properties_status
bt_mesh_gen_manu_property_status
bt_mesh_gen_client_properties_status
bt_mesh_gen_user_property_get
bt_mesh_gen_user_property_set
bt_mesh_gen_admin_property_get
bt_mesh_gen_admin_property_set
bt_mesh_gen_manu_property_get
bt_mesh_gen_manu_property_set
bt_mesh_gen_client_properties_get
bt_mesh_generic_client_get_state(bt_mesh_client_common_param_t *, void *);
bt_mesh_generic_client_set_state(bt_mesh_client_common_param_t *, void *);
Files
loading (4/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/esp_ble_mesh/models/client/include/mesh/generic_client.h
 
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2017-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ /** @file * @brief Bluetooth Mesh Generic Client Model APIs. *//* ... */ #ifndef _GENERIC_CLIENT_H_ #define _GENERIC_CLIENT_H_ #include "mesh/client_common.h" #ifdef __cplusplus extern "C" { #endif /* Generic client model common structure */ typedef bt_mesh_client_user_data_t bt_mesh_generic_client_t; typedef bt_mesh_client_internal_data_t generic_internal_data_t; /* Generic Client Model Callback */ extern const struct bt_mesh_model_cb bt_mesh_generic_client_cb; /* Generic OnOff Client Model Context */ extern const struct bt_mesh_model_op bt_mesh_gen_onoff_cli_op[]; /** @def BLE_MESH_MODEL_GEN_ONOFF_CLI * * Define a new generic onoff client model. Note that this API * needs to be repeated for each element which the application * wants to have a generic onoff client model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_onoff_cli. * * @return New generic onoff client model instance. *//* ... */ #define BLE_MESH_MODEL_GEN_ONOFF_CLI(cli_pub, cli_data) \ BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_ONOFF_CLI, \ bt_mesh_gen_onoff_cli_op, cli_pub, cli_data, &bt_mesh_generic_client_cb)... typedef bt_mesh_client_user_data_t bt_mesh_gen_onoff_client_t; struct bt_mesh_gen_onoff_status { bool op_en; /* Indicate whether optional parameters included */ uint8_t present_onoff; /* Present value of Generic OnOff state */ uint8_t target_onoff; /* Target value of Generic OnOff state (optional) */ uint8_t remain_time; /* Time to complete state transition (C.1) */ }{ ... }; struct bt_mesh_gen_onoff_set { bool op_en; /* Indicate whether optional parameters included */ uint8_t onoff; /* Target value of Generic OnOff state */ uint8_t tid; /* Transaction Identifier */ uint8_t trans_time; /* Time to complete state transition (optional) */ uint8_t delay; /* Indicate message execution delay (C.1) */ }{ ... }; /* Generic Level Client Model Context */ extern const struct bt_mesh_model_op bt_mesh_gen_level_cli_op[]; /** @def BLE_MESH_MODEL_GEN_LEVEL_CLI * * Define a new generic level client model. Note that this API * needs to be repeated for each element which the application * wants to have a generic level client model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_level_cli. * * @return New generic level client model instance. *//* ... */ #define BLE_MESH_MODEL_GEN_LEVEL_CLI(cli_pub, cli_data) \ BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_LEVEL_CLI, \ bt_mesh_gen_level_cli_op, cli_pub, cli_data, &bt_mesh_generic_client_cb)... typedef bt_mesh_client_user_data_t bt_mesh_gen_level_client_t; struct bt_mesh_gen_level_status { bool op_en; /* Indicate whether optional parameters included */ int16_t present_level; /* Present value of Generic Level state */ int16_t target_level; /* Target value of the Generic Level state (optional) */ uint8_t remain_time; /* Time to complete state transition (C.1) */ }{ ... }; struct bt_mesh_gen_level_set { bool op_en; /* Indicate whether optional parameters included */ int16_t level; /* Target value of Generic Level state */ uint8_t tid; /* Transaction Identifier */ uint8_t trans_time; /* Time to complete state transition (optional) */ uint8_t delay; /* Indicate message execution delay (C.1) */ }{ ... }; struct bt_mesh_gen_delta_set { bool op_en; /* Indicate whether optional parameters included */ int32_t delta_level; /* Delta change of Generic Level state */ uint8_t tid; /* Transaction Identifier */ uint8_t trans_time; /* Time to complete state transition (optional) */ uint8_t delay; /* Indicate message execution delay (C.1) */ }{ ... }; struct bt_mesh_gen_move_set { bool op_en; /* Indicate whether optional parameters included */ int16_t delta_level; /* Delta Level step to calculate Move speed for Generic Level state */ uint8_t tid; /* Transaction Identifier */ uint8_t trans_time; /* Time to complete state transition (optional) */ uint8_t delay; /* Indicate message execution delay (C.1) */ }{ ... }; /* Generic Default Transition Time Client Model Context */ extern const struct bt_mesh_model_op bt_mesh_gen_def_trans_time_cli_op[]; /** @def BLE_MESH_MODEL_GEN_DEF_TRANS_TIME_CLI * * Define a new generic default transition time client model. Note * that this API needs to be repeated for each element that the * application wants to have a generic default transition client * model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_def_trans_time_cli. * * @return New generic default transition time client model instance. *//* ... */ #define BLE_MESH_MODEL_GEN_DEF_TRANS_TIME_CLI(cli_pub, cli_data) \ BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_DEF_TRANS_TIME_CLI, \ bt_mesh_gen_def_trans_time_cli_op, cli_pub, cli_data, &bt_mesh_generic_client_cb)... typedef bt_mesh_client_user_data_t bt_mesh_gen_def_trans_time_client_t; struct bt_mesh_gen_def_trans_time_set { uint8_t trans_time; /* The value of the Generic Default Transition Time state */ }{ ... }; struct bt_mesh_gen_def_trans_time_status { uint8_t trans_time; /* The value of the Generic Default Transition Time state */ }{ ... }; /* Generic Power OnOff Client Model Context */ extern const struct bt_mesh_model_op bt_mesh_gen_power_onoff_cli_op[]; /** @def BLE_MESH_MODEL_GEN_POWER_ONOFF_CLI * * Define a new generic power onoff client model. Note that this API * needs to be repeated for each element which the application wants * to have a generic power onoff client model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_power_onoff_cli. * * @return New generic power onoff client model instance. *//* ... */ #define BLE_MESH_MODEL_GEN_POWER_ONOFF_CLI(cli_pub, cli_data) \ BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_POWER_ONOFF_CLI, \ bt_mesh_gen_power_onoff_cli_op, cli_pub, cli_data, &bt_mesh_generic_client_cb)... typedef bt_mesh_client_user_data_t bt_mesh_gen_power_onoff_client_t; struct bt_mesh_gen_onpowerup_set { uint8_t onpowerup; /* The value of the Generic OnPowerUp state */ }{ ... }; struct bt_mesh_gen_onpowerup_status { uint8_t onpowerup; /* The value of the Generic OnPowerUp state */ }{ ... }; /* Generic Power Level Client Model Context */ extern const struct bt_mesh_model_op bt_mesh_gen_power_level_cli_op[]; /** @def BLE_MESH_MODEL_GEN_POWER_LEVEL_CLI * * Define a new generic power level client model. Note that this API * needs to be repeated for each element which the application wants * to have a generic power level client model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_power_level_cli. * * @return New generic power level client model instance. *//* ... */ #define BLE_MESH_MODEL_GEN_POWER_LEVEL_CLI(cli_pub, cli_data) \ BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_POWER_LEVEL_CLI, \ bt_mesh_gen_power_level_cli_op, cli_pub, cli_data, &bt_mesh_generic_client_cb)... typedef bt_mesh_client_user_data_t bt_mesh_gen_power_level_client_t; struct bt_mesh_gen_power_level_status { bool op_en; /* Indicate whether optional parameters included */ uint16_t present_power; /* Present value of Generic Power Actual state */ uint16_t target_power; /* Target value of Generic Power Actual state (optional) */ uint8_t remain_time; /* Time to complete state transition (C.1) */ }{ ... }; struct bt_mesh_gen_power_last_status { uint16_t power; /* The value of the Generic Power Last state */ }{ ... }; struct bt_mesh_gen_power_default_status { uint16_t power; /* The value of the Generic Default Last state */ }{ ... }; struct bt_mesh_gen_power_range_status { uint8_t status_code; /* Status Code for the requesting message */ uint16_t range_min; /* Value of Range Min field of Generic Power Range state */ uint16_t range_max; /* Value of Range Max field of Generic Power Range state */ }{ ... }; struct bt_mesh_gen_power_level_set { bool op_en; /* Indicate whether optional parameters included */ uint16_t power; /* Target value of Generic Power Actual state */ uint8_t tid; /* Transaction Identifier */ uint8_t trans_time; /* Time to complete state transition (optional) */ uint8_t delay; /* Indicate message execution delay (C.1) */ }{ ... }; struct bt_mesh_gen_power_default_set { uint16_t power; /* The value of the Generic Power Default state */ }{ ... }; struct bt_mesh_gen_power_range_set { uint16_t range_min; /* Value of Range Min field of Generic Power Range state */ uint16_t range_max; /* Value of Range Max field of Generic Power Range state */ }{ ... }; /* Generic Battery Client Model Context */ extern const struct bt_mesh_model_op bt_mesh_gen_battery_cli_op[]; /** @def BLE_MESH_MODEL_GEN_BATTERY_CLI * * Define a new generic battery client model. Note that this API * needs to be repeated for each element which the application * wants to have a generic battery client model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_battery_cli. * * @return New generic battery client model instance. *//* ... */ #define BLE_MESH_MODEL_GEN_BATTERY_CLI(cli_pub, cli_data) \ BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_BATTERY_CLI, \ bt_mesh_gen_battery_cli_op, cli_pub, cli_data, &bt_mesh_generic_client_cb)... typedef bt_mesh_client_user_data_t bt_mesh_gen_battery_client_t; struct bt_mesh_gen_battery_status { uint32_t battery_level : 8; /* Value of Generic Battery Level state */ uint32_t time_to_discharge : 24; /* Value of Generic Battery Time to Discharge state */ uint32_t time_to_charge : 24; /* Value of Generic Battery Time to Charge state */ uint32_t flags : 8; /* Value of Generic Battery Flags state */ }{ ... }; /* Generic Location Client Model Context */ extern const struct bt_mesh_model_op bt_mesh_gen_location_cli_op[]; /** @def BLE_MESH_MODEL_GEN_LOCATION_CLI * * Define a new generic location client model. Note that this API * needs to be repeated for each element which the application * wants to have a generic location client model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_location_cli. * * @return New generic location client model instance. *//* ... */ #define BLE_MESH_MODEL_GEN_LOCATION_CLI(cli_pub, cli_data) \ BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_LOCATION_CLI, \ bt_mesh_gen_location_cli_op, cli_pub, cli_data, &bt_mesh_generic_client_cb)... typedef bt_mesh_client_user_data_t bt_mesh_gen_location_client_t; struct bt_mesh_gen_loc_global_status { int32_t global_latitude; /* Global Coordinates (Latitude) */ int32_t global_longitude; /* Global Coordinates (Longitude) */ int16_t global_altitude; /* Global Altitude */ }{ ... }; struct bt_mesh_gen_loc_local_status { int16_t local_north; /* Local Coordinates (North) */ int16_t local_east; /* Local Coordinates (East) */ int16_t local_altitude; /* Local Altitude */ uint8_t floor_number; /* Floor Number */ uint16_t uncertainty; /* Uncertainty */ }{ ... }; struct bt_mesh_gen_loc_global_set { int32_t global_latitude; /* Global Coordinates (Latitude) */ int32_t global_longitude; /* Global Coordinates (Longitude) */ int16_t global_altitude; /* Global Altitude */ }{ ... }; struct bt_mesh_gen_loc_local_set { int16_t local_north; /* Local Coordinates (North) */ int16_t local_east; /* Local Coordinates (East) */ int16_t local_altitude; /* Local Altitude */ uint8_t floor_number; /* Floor Number */ uint16_t uncertainty; /* Uncertainty */ }{ ... }; /* Generic Property Client Model Context */ extern const struct bt_mesh_model_op bt_mesh_gen_property_cli_op[]; /** @def BLE_MESH_MODEL_GEN_LOCATION_CLI * * Define a new generic location client model. Note that this API * needs to be repeated for each element which the application * wants to have a generic location client model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_location_cli. * * @return New generic location client model instance. *//* ... */ #define BLE_MESH_MODEL_GEN_PROPERTY_CLI(cli_pub, cli_data) \ BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_PROP_CLI, \ bt_mesh_gen_property_cli_op, cli_pub, cli_data, &bt_mesh_generic_client_cb)... typedef bt_mesh_client_user_data_t bt_mesh_gen_property_client_t; struct bt_mesh_gen_user_properties_status { struct net_buf_simple *user_property_ids; /* Buffer contains a sequence of N User Property IDs */ }{ ... }; struct bt_mesh_gen_user_property_status { bool op_en; /* Indicate whether optional parameters included */ uint16_t user_property_id; /* Property ID identifying a Generic User Property */ uint8_t user_access; /* Enumeration indicating user access (optional) */ struct net_buf_simple *user_property_value; /* Raw value for the User Property (C.1) */ }{ ... }; struct bt_mesh_gen_admin_properties_status { struct net_buf_simple *admin_property_ids; /* Buffer contains a sequence of N Admin Property IDs */ }{ ... }; struct bt_mesh_gen_admin_property_status { bool op_en; /* Indicate whether optional parameters included */ uint16_t admin_property_id; /* Property ID identifying a Generic Admin Property */ uint8_t admin_user_access; /* Enumeration indicating user access (optional) */ struct net_buf_simple *admin_property_value; /* Raw value for the Admin Property (C.1) */ }{ ... }; struct bt_mesh_gen_manu_properties_status { struct net_buf_simple *manu_property_ids; /* Buffer contains a sequence of N Manufacturer Property IDs */ }{ ... }; struct bt_mesh_gen_manu_property_status { bool op_en; /* Indicate whether optional parameters included */ uint16_t manu_property_id; /* Property ID identifying a Generic Manufacturer Property */ uint8_t manu_user_access; /* Enumeration indicating user access (optional) */ struct net_buf_simple *manu_property_value; /* Raw value for the Manufacturer Property (C.1) */ }{ ... }; struct bt_mesh_gen_client_properties_status { struct net_buf_simple *client_property_ids; /* Buffer contains a sequence of N Client Property IDs */ }{ ... }; struct bt_mesh_gen_user_property_get { uint16_t user_property_id; /* Property ID identifying a Generic User Property */ }{ ... }; struct bt_mesh_gen_user_property_set { uint16_t user_property_id; /* Property ID identifying a Generic User Property */ struct net_buf_simple *user_property_value; /* Raw value for the User Property */ }{ ... }; struct bt_mesh_gen_admin_property_get { uint16_t admin_property_id; /* Property ID identifying a Generic Admin Property */ }{ ... }; struct bt_mesh_gen_admin_property_set { uint16_t admin_property_id; /* Property ID identifying a Generic Admin Property */ uint8_t admin_user_access; /* Enumeration indicating user access */ struct net_buf_simple *admin_property_value; /* Raw value for the Admin Property */ }{ ... }; struct bt_mesh_gen_manu_property_get { uint16_t manu_property_id; /* Property ID identifying a Generic Manufacturer Property */ }{ ... }; struct bt_mesh_gen_manu_property_set { uint16_t manu_property_id; /* Property ID identifying a Generic Manufacturer Property */ uint8_t manu_user_access; /* Enumeration indicating user access */ }{ ... }; struct bt_mesh_gen_client_properties_get { uint16_t client_property_id; /* A starting Client Property ID present within an element */ }{ ... }; /** * @brief This function is called to get generic states. * * @param[in] common: Message common information structure * @param[in] get: Pointer of generic get message value * * @return Zero-success, other-fail *//* ... */ int bt_mesh_generic_client_get_state(bt_mesh_client_common_param_t *common, void *get); /** * @brief This function is called to set generic states. * * @param[in] common: Message common information structure * @param[in] set: Pointer of generic set message value * * @return Zero-success, other-fail *//* ... */ int bt_mesh_generic_client_set_state(bt_mesh_client_common_param_t *common, void *set); #ifdef __cplusplus }{...} #endif /* ... */ #endif /* _GENERIC_CLIENT_H_ */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.