10
10
#include < stdlib.h>
11
11
#include < string.h>
12
12
13
- #include < device.h>
14
13
#include < esp_matter.h>
15
- #include < led_driver.h >
14
+ #include " bsp/esp-bsp.h "
16
15
17
16
#include < app_priv.h>
18
17
@@ -38,7 +37,7 @@ static esp_err_t set_default_epaper(esp_matter_attr_val_t *val)
38
37
}
39
38
40
39
/* Do any conversions/remapping for the actual value here */
41
- static esp_err_t app_driver_light_set_power (led_driver_handle_t handle, esp_matter_attr_val_t *val)
40
+ static esp_err_t app_driver_light_set_power (led_indicator_handle_t handle, esp_matter_attr_val_t *val)
42
41
{
43
42
return set_default_epaper (val);
44
43
}
@@ -133,7 +132,7 @@ esp_err_t app_driver_light_set_defaults(uint16_t endpoint_id)
133
132
{
134
133
esp_err_t err = ESP_OK;
135
134
void *priv_data = endpoint::get_priv_data (endpoint_id);
136
- led_driver_handle_t handle = (led_driver_handle_t )priv_data;
135
+ led_indicator_handle_t handle = (led_indicator_handle_t )priv_data;
137
136
node_t *node = node::get ();
138
137
endpoint_t *endpoint = endpoint::get (node, endpoint_id);
139
138
cluster_t *cluster = NULL ;
@@ -193,15 +192,10 @@ static void factory_reset_badge(void *arg, void *data)
193
192
app_driver_handle_t app_driver_button_init ()
194
193
{
195
194
/* Initialize button */
196
- button_config_t config = {
197
- .type = BUTTON_TYPE_GPIO,
198
- .gpio_button_config = {
199
- .gpio_num = 39 ,
200
- .active_level = 0 ,
201
- }
202
- };
203
- button_handle_t handle = iot_button_create (&config);
204
- iot_button_register_cb (handle, BUTTON_PRESS_DOWN, app_driver_button_toggle_cb, NULL );
205
- iot_button_register_cb (handle, BUTTON_LONG_PRESS_START, factory_reset_badge, NULL );
206
- return (app_driver_handle_t )handle;
195
+ button_handle_t btns[BSP_BUTTON_NUM];
196
+ ESP_ERROR_CHECK (bsp_iot_button_create (btns, NULL , BSP_BUTTON_NUM));
197
+ ESP_ERROR_CHECK (iot_button_register_cb (btns[0 ], BUTTON_PRESS_DOWN, app_driver_button_toggle_cb, NULL ));
198
+ ESP_ERROR_CHECK (iot_button_register_cb (btns[0 ], BUTTON_LONG_PRESS_START, factory_reset_badge, NULL ));
199
+
200
+ return (app_driver_handle_t )btns[0 ];
207
201
}
0 commit comments