mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-28 13:19:38 +01:00
1. BLE Mesh Core
* Provisioning: Node Role
* Advertising and GATT bearer
* Authentication OOB
* Provisioning: Provisioner Role
* Advertising and GATT bearer
* Authentication OOB
* Networking
* Relay
* Segmentation and Reassembly
* Key Refresh
* IV Update
* Proxy Support
* Multiple Client Models Run Simultaneously
* Support multiple client models send packets to different nodes simultaneously
* No blocking between client model and server
* NVS Storage
* Store Provisioning Data of BLE Mesh Nodes in Flash
2. BLE Mesh Applications
* BLE Mesh Node & Provisioner
* Node Example
* Provisioner Example
* Node + Generic OnOff Client Example
* Fast Provisioning
* Vendor Fast Prov Server Model
* Vendor Fast Prov Client Model
* Examples
* Wi-Fi & BLE Mesh Coexistence
* Example
* BLE Mesh Console Commands
* Example
3. BLE Mesh Models
* Foundation Models
* Configuration Server Model
* Configuration Client Model
* Health Server Model
* Health Client Model
* Generic Client Models
* Generic OnOff Client
* Generic Level Client
* Generic Location Client
* Generic Default Transition Timer Client
* Generic Power OnOff Client
* Generic Power Level Client
* Generic Battery Client
* Generic Property Client
* Generic Server Models
* Generic OnOff Server (Example)
* Lighting Client Models
* Light Lightness Client
* Light CTL Client
* Light HSL Client
* Light xyL Client
* Light LC Client
* Sensor Client Model
* Sensor Client
* Time and Scenes Client Models
* Time Client
* Scene Client
* Scheduler Client
43 lines
803 B
C
43 lines
803 B
C
/* board.h - Board-specific hooks */
|
|
|
|
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef _BOARD_H_
|
|
#define _BOARD_H_
|
|
|
|
#include "driver/gpio.h"
|
|
#include "esp_ble_mesh_defs.h"
|
|
|
|
#if defined(CONFIG_BLE_MESH_ESP_WROOM_32)
|
|
#define LED_R GPIO_NUM_25
|
|
#define LED_G GPIO_NUM_26
|
|
#define LED_B GPIO_NUM_27
|
|
#elif defined(CONFIG_BLE_MESH_ESP_WROVER)
|
|
#define LED_R GPIO_NUM_0
|
|
#define LED_G GPIO_NUM_2
|
|
#define LED_B GPIO_NUM_4
|
|
#endif
|
|
|
|
#define LED_ON 1
|
|
#define LED_OFF 0
|
|
|
|
struct _led_state {
|
|
uint8_t current;
|
|
uint8_t previous;
|
|
uint8_t pin;
|
|
char *name;
|
|
};
|
|
|
|
void board_output_number(esp_ble_mesh_output_action_t action, uint32_t number);
|
|
|
|
void board_prov_complete(void);
|
|
|
|
void board_led_operation(uint8_t pin, uint8_t onoff);
|
|
|
|
void board_init(void);
|
|
|
|
#endif
|