1
2
3
9
10
17
18
19
20
21
22
23
24
25
26
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
63
64
65
66
77
78
79
86
87
/* ... */
#include <stdio.h>
#include "iot_button.h"
#include "driver/gpio.h"
#include "lightbulb.h"
#include "esp_log.h"
#include "board.h"6 includes
#define TAG "BOARD"
#define BUTTON_ACTIVE_LEVEL 0
extern uint8_t click_to_send_onoff_set;
extern void example_ble_mesh_send_gen_onoff_set(uint8_t onoff);
extern void example_ble_mesh_send_remote_provisioning_scan_start(void);
void board_led_operation(uint8_t r, uint8_t g, uint8_t b)
{
#ifdef BLE_MESH_LED_STRIP_IO
ws2812_set_rgb_channel(r, g, b);
#else
gpio_set_level(LED_R, r);
gpio_set_level(LED_G, g);
gpio_set_level(LED_B, b);/* ... */
#endif
}{ ... }
static void board_led_init(void)
{
#ifdef BLE_MESH_LED_STRIP_IO
lightbulb_config_t config = {
.type = DRIVER_WS2812,
.driver_conf.ws2812.led_num = 3,
.driver_conf.ws2812.ctrl_io = 8,
.capability.enable_fades = true,
.capability.fades_ms = 800,
.capability.enable_status_storage = false,
.capability.mode_mask = COLOR_MODE,
.capability.storage_cb = NULL,
.external_limit = NULL,
.gamma_conf = NULL,
.init_status.mode = WORK_COLOR,
.init_status.on = false,
.init_status.hue = 0,
.init_status.saturation = 100,
.init_status.value = 100,
}{...};
lightbulb_init(&config);
ws2812_set_rgb_channel(LED_OFF, LED_OFF, LED_OFF);/* ... */
#else
gpio_set_level(LED_R, LED_OFF);
gpio_set_level(LED_G, LED_OFF);
gpio_set_level(LED_B, LED_OFF);/* ... */
#endif
}{ ... }
static void button_tap_cb(void* arg)
{
static uint8_t onoff = 1;
ESP_LOGI(TAG, "tap cb (%s)", (char *)arg);
if (click_to_send_onoff_set) {
example_ble_mesh_send_gen_onoff_set(onoff);
onoff = !onoff;
}{...} else {
example_ble_mesh_send_remote_provisioning_scan_start();
}{...}
}{ ... }
static void board_button_init(void)
{
button_handle_t btn_handle = iot_button_create(BUTTON_IO_NUM, BUTTON_ACTIVE_LEVEL);
if (btn_handle) {
iot_button_set_evt_cb(btn_handle, BUTTON_CB_RELEASE, button_tap_cb, "RELEASE");
}{...}
}{ ... }
void board_init(void)
{
board_led_init();
board_button_init();
}{ ... }