mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 11:03:05 +00:00
78 lines
2.6 KiB
C++
78 lines
2.6 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 <esp_err.h>
|
|
#include <esp_log.h>
|
|
#include <nvs_flash.h>
|
|
|
|
#include <esp_matter.h>
|
|
#include <esp_matter_console.h>
|
|
#include <esp_matter_ota_provider.h>
|
|
|
|
#include <app_reset.h>
|
|
|
|
#include <app/server/Server.h>
|
|
#include <credentials/FabricTable.h>
|
|
#include <platform/CHIPDeviceLayer.h>
|
|
|
|
static const char *TAG = "app_main";
|
|
uint16_t switch_endpoint_id = 0;
|
|
|
|
using namespace esp_matter;
|
|
using namespace esp_matter::attribute;
|
|
using namespace esp_matter::endpoint;
|
|
using namespace esp_matter::ota_provider;
|
|
using namespace chip::app::Clusters;
|
|
using chip::app::Clusters::OTAProviderDelegate;
|
|
|
|
static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg)
|
|
{
|
|
switch (event->Type) {
|
|
case chip::DeviceLayer::DeviceEventType::PublicEventTypes::kInterfaceIpAddressChanged:
|
|
ESP_LOGI(TAG, "Interface IP Address changed");
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
extern "C" void app_main()
|
|
{
|
|
esp_err_t err = ESP_OK;
|
|
|
|
/* Initialize the ESP NVS layer */
|
|
nvs_flash_init();
|
|
// If there is no commissioner in the controller, we need a default node so that the controller can be commissioned
|
|
// to a specific fabric.
|
|
node::config_t node_config;
|
|
node_t *node = node::create(&node_config, NULL, NULL);
|
|
endpoint_t *root_node_endpoint = endpoint::get(node, 0);
|
|
cluster::ota_software_update_provider::config_t config;
|
|
config.delegate = &EspOtaProvider::GetInstance();
|
|
cluster_t *ota_provider_cluster = cluster::ota_software_update_provider::create(root_node_endpoint, &config, CLUSTER_FLAG_SERVER);
|
|
if (!node || !root_node_endpoint || !ota_provider_cluster) {
|
|
ESP_LOGE(TAG, "Failed to create data model");
|
|
return;
|
|
}
|
|
/* Matter start */
|
|
err = esp_matter::start(app_event_cb);
|
|
if (err != ESP_OK) {
|
|
ESP_LOGE(TAG, "Matter start failed: %d", err);
|
|
}
|
|
|
|
EspOtaProvider::GetInstance().Init(true, &chip::DeviceLayer::SystemLayer(),
|
|
&chip::Server::GetInstance().GetExchangeManager(),
|
|
&chip::Server::GetInstance().GetFabricTable());
|
|
#if CONFIG_ENABLE_CHIP_SHELL
|
|
esp_matter::console::diagnostics_register_commands();
|
|
esp_matter::console::wifi_register_commands();
|
|
esp_matter::console::factoryreset_register_commands();
|
|
esp_matter::console::init();
|
|
#endif // CONFIG_ENABLE_CHIP_SHELL
|
|
}
|