mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
7557f0b87f
- Driver specific changes for updated button component in examples. - Updated the device_hal code for button component upgrade. - Updated the idf_component.yml of examples to use latest version of espressif/cmake_utilities.
98 lines
3.2 KiB
C++
98 lines
3.2 KiB
C++
/*
|
|
This example code is in the Public Domain (or CC0 licensed, at your option.)
|
|
|
|
Unless required by applicable law or agreed to in writing, this
|
|
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
CONDITIONS OF ANY KIND, either express or implied.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <esp_log.h>
|
|
#include <esp_matter.h>
|
|
|
|
#include <app_priv.h>
|
|
#include <device.h>
|
|
|
|
using namespace chip::app::Clusters;
|
|
using namespace esp_matter;
|
|
|
|
static const char *TAG = "app_driver";
|
|
extern uint16_t room_air_conditioner_endpoint_id;
|
|
|
|
/* Do any conversions/remapping for the actual value here */
|
|
static esp_err_t app_driver_room_air_conditioner_set_power(led_driver_handle_t handle, esp_matter_attr_val_t *val)
|
|
{
|
|
return led_driver_set_power(handle, val->val.b);
|
|
}
|
|
|
|
static void app_driver_button_toggle_cb(void *arg, void *data)
|
|
{
|
|
ESP_LOGI(TAG, "Toggle button pressed");
|
|
uint16_t endpoint_id = room_air_conditioner_endpoint_id;
|
|
uint32_t cluster_id = OnOff::Id;
|
|
uint32_t attribute_id = OnOff::Attributes::OnOff::Id;
|
|
|
|
attribute_t *attribute = attribute::get(endpoint_id, cluster_id, attribute_id);
|
|
|
|
esp_matter_attr_val_t val = esp_matter_invalid(NULL);
|
|
attribute::get_val(attribute, &val);
|
|
val.val.b = !val.val.b;
|
|
attribute::update(endpoint_id, cluster_id, attribute_id, &val);
|
|
}
|
|
|
|
esp_err_t app_driver_attribute_update(app_driver_handle_t driver_handle, uint16_t endpoint_id, uint32_t cluster_id,
|
|
uint32_t attribute_id, esp_matter_attr_val_t *val)
|
|
{
|
|
esp_err_t err = ESP_OK;
|
|
if (endpoint_id == room_air_conditioner_endpoint_id) {
|
|
led_driver_handle_t handle = (led_driver_handle_t)driver_handle;
|
|
if (cluster_id == OnOff::Id) {
|
|
if (attribute_id == OnOff::Attributes::OnOff::Id) {
|
|
err = app_driver_room_air_conditioner_set_power(handle, val);
|
|
}
|
|
}
|
|
}
|
|
return err;
|
|
}
|
|
|
|
esp_err_t app_driver_room_air_conditioner_set_defaults(uint16_t endpoint_id)
|
|
{
|
|
esp_err_t err = ESP_OK;
|
|
void *priv_data = endpoint::get_priv_data(endpoint_id);
|
|
led_driver_handle_t handle = (led_driver_handle_t)priv_data;
|
|
esp_matter_attr_val_t val = esp_matter_invalid(NULL);
|
|
|
|
/* Setting power */
|
|
attribute_t *attribute = attribute::get(endpoint_id, OnOff::Id, OnOff::Attributes::OnOff::Id);
|
|
attribute::get_val(attribute, &val);
|
|
err |= app_driver_room_air_conditioner_set_power(handle, &val);
|
|
|
|
return err;
|
|
}
|
|
|
|
app_driver_handle_t app_driver_room_air_conditioner_init()
|
|
{
|
|
/* Initialize led */
|
|
led_driver_config_t config = led_driver_get_config();
|
|
led_driver_handle_t handle = led_driver_init(&config);
|
|
return (app_driver_handle_t)handle;
|
|
}
|
|
|
|
app_driver_handle_t app_driver_button_init()
|
|
{
|
|
/* Initialize button */
|
|
button_handle_t handle = NULL;
|
|
const button_config_t btn_cfg = {0};
|
|
const button_gpio_config_t btn_gpio_cfg = button_driver_get_config();
|
|
|
|
if (iot_button_new_gpio_device(&btn_cfg, &btn_gpio_cfg, &handle) != ESP_OK) {
|
|
ESP_LOGE(TAG, "Failed to create button device");
|
|
return NULL;
|
|
}
|
|
|
|
iot_button_register_cb(handle, BUTTON_PRESS_DOWN, NULL, app_driver_button_toggle_cb, NULL);
|
|
return (app_driver_handle_t)handle;
|
|
}
|