mirror of
https://github.com/espressif/esp-rainmaker.git
synced 2026-01-15 12:25:30 +00:00
examples: moved app_matter apis as component at examples/matter/common examples/matter/matter_light: renamed app_matter to app_matter_light examples/matter/matter_light: fixed for thread examples/matter/matter_light: moved forward declaration to app_priv.h examples/matter/matter_switch: Updated to include app_matter as component examples/matter/matter_controller: Updated to include app_matter as component examples/matter/matter_controller_with_touchscreen: Updated to include app_matter as component removed namespace declaration from header file.
17 lines
462 B
C
17 lines
462 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_err.h>
|
|
#include <app_priv.h>
|
|
|
|
esp_err_t app_matter_endpoint_create();
|
|
esp_err_t app_matter_report_power(bool val);
|
|
esp_err_t app_matter_endpoint_create();
|