mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
7b2912a9e5
docs: Add details for esp32h2, esp32c2, and esp32c6
21 lines
799 B
C
21 lines
799 B
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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <esp_matter_attribute_utils.h>
|
|
#include <ha/esp_zigbee_ha_standard.h>
|
|
#include <esp_zigbee_core.h>
|
|
#include <app_bridged_device.h>
|
|
#include <stdint.h>
|
|
|
|
void zigbee_bridge_find_bridged_on_off_light_cb(esp_zb_zdp_status_t zdo_status, uint16_t addr, uint8_t endpoint, void *user_ctx);
|
|
|
|
esp_err_t zigbee_bridge_attribute_update(uint16_t endpoint_id, uint32_t cluster_id, uint32_t attribute_id,
|
|
esp_matter_attr_val_t *val, app_bridged_device_t *zigbee_device);
|