2015-04-09 18:32:04 +02:00
|
|
|
/*
|
|
|
|
Copyright 2013 Mathias Andersson <wraul@dbox.se>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-10-21 18:20:24 +02:00
|
|
|
#pragma once
|
2015-04-09 18:32:04 +02:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2019-07-16 09:56:36 +02:00
|
|
|
#ifndef BACKLIGHT_LEVELS
|
2019-08-30 20:19:03 +02:00
|
|
|
# define BACKLIGHT_LEVELS 3
|
2019-07-17 06:58:29 +02:00
|
|
|
#elif BACKLIGHT_LEVELS > 31
|
2019-08-30 20:19:03 +02:00
|
|
|
# error "Maximum value of BACKLIGHT_LEVELS is 31"
|
2019-07-16 09:56:36 +02:00
|
|
|
#endif
|
|
|
|
|
2019-10-05 17:57:00 +02:00
|
|
|
#ifndef BREATHING_PERIOD
|
|
|
|
# define BREATHING_PERIOD 6
|
|
|
|
#endif
|
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
typedef union {
|
|
|
|
uint8_t raw;
|
|
|
|
struct {
|
2019-08-30 20:19:03 +02:00
|
|
|
bool enable : 1;
|
|
|
|
bool breathing : 1;
|
|
|
|
uint8_t reserved : 1; // Reserved for possible future backlight modes
|
|
|
|
uint8_t level : 5;
|
2015-04-09 18:32:04 +02:00
|
|
|
};
|
|
|
|
} backlight_config_t;
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
void backlight_init(void);
|
|
|
|
void backlight_toggle(void);
|
|
|
|
void backlight_enable(void);
|
|
|
|
void backlight_disable(void);
|
|
|
|
bool is_backlight_enabled(void);
|
|
|
|
void backlight_step(void);
|
2020-01-13 02:30:56 +01:00
|
|
|
void backlight_increase(void);
|
|
|
|
void backlight_decrease(void);
|
2019-08-30 20:19:03 +02:00
|
|
|
void backlight_level(uint8_t level);
|
2016-05-09 19:17:15 +02:00
|
|
|
uint8_t get_backlight_level(void);
|
2018-11-14 16:45:46 +01:00
|
|
|
|
2020-01-13 02:30:56 +01:00
|
|
|
// implementation specific
|
|
|
|
void backlight_init_ports(void);
|
|
|
|
void backlight_set(uint8_t level);
|
|
|
|
void backlight_task(void);
|
|
|
|
|
2019-07-16 09:56:36 +02:00
|
|
|
#ifdef BACKLIGHT_BREATHING
|
2020-01-13 02:30:56 +01:00
|
|
|
|
2019-07-16 09:56:36 +02:00
|
|
|
void backlight_toggle_breathing(void);
|
|
|
|
void backlight_enable_breathing(void);
|
|
|
|
void backlight_disable_breathing(void);
|
|
|
|
bool is_backlight_breathing(void);
|
2020-01-13 02:30:56 +01:00
|
|
|
|
|
|
|
void breathing_period_set(uint8_t value);
|
|
|
|
uint8_t get_breathing_period(void);
|
|
|
|
void breathing_period_default(void);
|
|
|
|
void breathing_period_inc(void);
|
|
|
|
void breathing_period_dec(void);
|
|
|
|
|
|
|
|
// implementation specific
|
2019-07-16 09:56:36 +02:00
|
|
|
void breathing_enable(void);
|
|
|
|
void breathing_disable(void);
|
2020-01-13 02:30:56 +01:00
|
|
|
void breathing_toggle(void);
|
|
|
|
bool is_breathing(void);
|
|
|
|
void breathing_pulse(void);
|
|
|
|
void breathing_task(void);
|
2019-07-16 09:56:36 +02:00
|
|
|
#endif
|