mirror of
https://github.com/ravinrabbid/DonCon2040.git
synced 2024-11-20 11:47:07 +01:00
46 lines
867 B
C++
46 lines
867 B
C++
#ifndef _PERIPHERALS_STATUSLED_H_
|
|
#define _PERIPHERALS_STATUSLED_H_
|
|
|
|
#include "utils/InputState.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace Doncon::Peripherals {
|
|
|
|
class StatusLed {
|
|
public:
|
|
struct Config {
|
|
struct Color {
|
|
uint8_t r;
|
|
uint8_t g;
|
|
uint8_t b;
|
|
};
|
|
|
|
Color don_left_color;
|
|
Color ka_left_color;
|
|
Color don_right_color;
|
|
Color ka_right_color;
|
|
|
|
uint8_t led_enable_pin;
|
|
uint8_t led_pin;
|
|
bool is_rgbw;
|
|
uint8_t brightness;
|
|
};
|
|
|
|
private:
|
|
Config m_config;
|
|
|
|
Utils::InputState m_input_state;
|
|
|
|
public:
|
|
StatusLed(const Config &config);
|
|
|
|
void setInputState(const Utils::InputState input_state);
|
|
void setBrightness(const uint8_t brightness);
|
|
|
|
void update();
|
|
};
|
|
|
|
} // namespace Doncon::Peripherals
|
|
|
|
#endif // _PERIPHERALS_STATUSLED_H_
|