2021-12-22 09:31:53 +08:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2017 Intel Corporation
|
|
|
|
* SPDX-FileContributor: 2018-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2019-01-07 15:16:47 +08:00
|
|
|
|
|
|
|
#ifndef _BOARD_H_
|
|
|
|
#define _BOARD_H_
|
|
|
|
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
#include "driver/gpio.h"
|
|
|
|
#include "esp_ble_mesh_defs.h"
|
|
|
|
|
|
|
|
#ifdef 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
|
2020-12-25 16:47:39 +08:00
|
|
|
#elif defined(CONFIG_BLE_MESH_ESP32C3_DEV)
|
|
|
|
#define LED_R GPIO_NUM_8
|
|
|
|
#define LED_G GPIO_NUM_8
|
|
|
|
#define LED_B GPIO_NUM_8
|
2021-05-25 15:04:03 +08:00
|
|
|
#elif defined(CONFIG_BLE_MESH_ESP32S3_DEV)
|
|
|
|
#define LED_R GPIO_NUM_47
|
|
|
|
#define LED_G GPIO_NUM_47
|
|
|
|
#define LED_B GPIO_NUM_47
|
2023-01-05 12:11:34 +08:00
|
|
|
#elif defined(CONFIG_BLE_MESH_ESP32C6_DEV)
|
|
|
|
#define LED_R GPIO_NUM_8
|
|
|
|
#define LED_G GPIO_NUM_8
|
|
|
|
#define LED_B GPIO_NUM_8
|
2019-01-07 15:16:47 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
esp_err_t board_init(void);
|
|
|
|
|
|
|
|
#endif
|