mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
46 lines
1.2 KiB
C
46 lines
1.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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <esp_err.h>
|
|
#include <esp_matter.h>
|
|
|
|
#if CHIP_DEVICE_CONFIG_ENABLE_THREAD
|
|
#include "esp_openthread_types.h"
|
|
#endif
|
|
|
|
/** Standard max values (used for remapping attributes) */
|
|
#define STANDARD_BRIGHTNESS 100
|
|
#define STANDARD_HUE 360
|
|
#define STANDARD_SATURATION 100
|
|
#define STANDARD_TEMPERATURE_FACTOR 1000000
|
|
|
|
/** Matter max values (used for remapping attributes) */
|
|
#define MATTER_BRIGHTNESS 254
|
|
#define MATTER_HUE 254
|
|
#define MATTER_SATURATION 254
|
|
#define MATTER_TEMPERATURE_FACTOR 1000000
|
|
|
|
/** Default attribute values used during initialization */
|
|
#define DEFAULT_POWER true
|
|
#define DEFAULT_BRIGHTNESS 64
|
|
#define DEFAULT_HUE 128
|
|
#define DEFAULT_SATURATION 254
|
|
|
|
typedef void *app_driver_handle_t;
|
|
|
|
/** Initialize the button driver
|
|
*
|
|
* This initializes the button driver associated with the selected board.
|
|
*
|
|
* @return Handle on success.
|
|
* @return NULL in case of failure.
|
|
*/
|
|
app_driver_handle_t app_driver_button_init();
|