Files
esp-matter/device_hal/led_driver/gpio/led_driver.c
T
Chirag Atal 09eba3f455 app_driver: Restructuring setting the driver to default value
led_driver: Removing the get() APIs
2022-08-03 19:45:56 +05:30

108 lines
3.1 KiB
C

// Copyright 2021 Espressif Systems (Shanghai) CO LTD
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License
#include <driver/ledc.h>
#include <esp_log.h>
#include <hal/ledc_types.h>
#include <led_driver.h>
static const char *TAG = "led_driver_gpio";
static bool current_power = false;
static uint8_t current_brightness = 0;
led_driver_handle_t led_driver_init(led_driver_config_t *config)
{
ESP_LOGI(TAG, "Initializing light driver");
esp_err_t err = ESP_OK;
ledc_timer_config_t ledc_timer = {
.speed_mode = LEDC_LOW_SPEED_MODE, // timer mode
.duty_resolution = LEDC_TIMER_8_BIT, // resolution of PWM duty
.timer_num = LEDC_TIMER_1, // timer index
.freq_hz = 5000, // frequency of PWM signal
.clk_cfg = LEDC_AUTO_CLK, // Auto select the source clock
};
err = ledc_timer_config(&ledc_timer);
if (err != ESP_OK) {
ESP_LOGE(TAG, "led_timerc_config failed");
return NULL;
}
ledc_channel_config_t ledc_channel = {
.gpio_num = config->gpio,
.speed_mode = LEDC_LOW_SPEED_MODE,
.channel = config->channel,
.intr_type = LEDC_INTR_DISABLE,
.timer_sel = LEDC_TIMER_1,
.duty = 0,
.hpoint = 0,
};
err = ledc_channel_config(&ledc_channel);
if (err != ESP_OK) {
ESP_LOGE(TAG, "ledc_channel_config failed");
}
/* Using (channel + 1) as handle */
return (led_driver_handle_t)(config->channel + 1);
}
esp_err_t led_driver_set_power(led_driver_handle_t handle, bool power)
{
current_power = power;
return led_driver_set_brightness(handle, current_brightness);
}
esp_err_t led_driver_set_brightness(led_driver_handle_t handle, uint8_t brightness)
{
esp_err_t err;
int channel = (int)handle - 1;
if (channel < 0) {
ESP_LOGE(TAG, "Invalid handle");
return ESP_ERR_INVALID_ARG;
}
if (brightness != 0) {
current_brightness = brightness;
}
if (!current_power) {
brightness = 0;
}
err = ledc_set_duty(LEDC_LOW_SPEED_MODE, channel, brightness);
if (err != ESP_OK) {
ESP_LOGE(TAG, "ledc_set_duty failed");
}
err = ledc_update_duty(LEDC_LOW_SPEED_MODE, channel);
if (err != ESP_OK) {
ESP_LOGE(TAG, "ledc_update_duty failed");
}
return err;
}
esp_err_t led_driver_set_hue(led_driver_handle_t handle, uint16_t hue)
{
return ESP_ERR_NOT_SUPPORTED;
}
esp_err_t led_driver_set_saturation(led_driver_handle_t handle, uint8_t saturation)
{
return ESP_ERR_NOT_SUPPORTED;
}
esp_err_t led_driver_set_temperature(led_driver_handle_t handle, uint32_t temperature)
{
return ESP_ERR_NOT_SUPPORTED;
}