mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
49 lines
1.6 KiB
C++
49 lines
1.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.
|
|
*/
|
|
|
|
/* It is recommended to copy this code in your example so that you can modify as per your application's needs,
|
|
* especially for the indicator calbacks, button_factory_reset_pressed_cb() and button_factory_reset_released_cb().
|
|
*/
|
|
|
|
#include <esp_log.h>
|
|
#include <device.h>
|
|
#include <esp_matter.h>
|
|
|
|
static const char *TAG = "app_reset";
|
|
static bool perform_factory_reset = false;
|
|
|
|
static void button_factory_reset_pressed_cb(void *arg, void *data)
|
|
{
|
|
if (!perform_factory_reset) {
|
|
ESP_LOGI(TAG, "Factory reset triggered. Release the button to start factory reset.");
|
|
perform_factory_reset = true;
|
|
}
|
|
}
|
|
|
|
static void button_factory_reset_released_cb(void *arg, void *data)
|
|
{
|
|
if (perform_factory_reset) {
|
|
ESP_LOGI(TAG, "Starting factory reset");
|
|
esp_matter::factory_reset();
|
|
perform_factory_reset = false;
|
|
}
|
|
}
|
|
|
|
esp_err_t app_reset_button_register(void *handle)
|
|
{
|
|
if (!handle) {
|
|
ESP_LOGE(TAG, "Handle cannot be NULL");
|
|
return ESP_ERR_INVALID_ARG;
|
|
}
|
|
button_handle_t button_handle = (button_handle_t)handle;
|
|
esp_err_t err = ESP_OK;
|
|
err |= iot_button_register_cb(button_handle, BUTTON_LONG_PRESS_HOLD, button_factory_reset_pressed_cb, NULL);
|
|
err |= iot_button_register_cb(button_handle, BUTTON_PRESS_UP, button_factory_reset_released_cb, NULL);
|
|
return err;
|
|
}
|