MeshX 0.3
This repository provides an implementation for Bluetooth Low Energy (BLE) Mesh network nodes. The project allows you to create BLE mesh nodes that can communicate with each other, enabling the development of smart home solutions or other IoT-based applications.
Loading...
Searching...
No Matches
ble_mesh_plat_init.h
Go to the documentation of this file.
1
12
13#ifndef _BLE_MESH_EXAMPLE_INIT_H_
14#define _BLE_MESH_EXAMPLE_INIT_H_
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20#include "esp_err.h"
21
31void ble_mesh_get_dev_uuid(uint8_t *dev_uuid);
32
43
44esp_err_t bluetooth_init(void);
45
46#ifdef __cplusplus
47}
48#endif
49
50#endif /* _BLE_MESH_EXAMPLE_INIT_H_ */
esp_err_t bluetooth_init(void)
Initialize the Bluetooth stack for BLE Mesh.
void ble_mesh_get_dev_uuid(uint8_t *dev_uuid)
Retrieve the device UUID for BLE Mesh.