diff options
Diffstat (limited to 'light/Light.h')
-rw-r--r-- | light/Light.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/light/Light.h b/light/Light.h index 7acefa7..1a28589 100644 --- a/light/Light.h +++ b/light/Light.h @@ -41,9 +41,11 @@ class Light : public ILight { private: void setLightBacklight(Type type, const LightState& state); + void setLightButtons(Type type, const LightState& state); void setLightNotification(Type type, const LightState& state); void applyNotificationState(const LightState& state); + uint32_t max_button_brightness_; uint32_t max_led_brightness_; uint32_t max_screen_brightness_; @@ -57,6 +59,8 @@ class Light : public ILight { {Type::NOTIFICATIONS, {}}, {Type::BATTERY, {}}, }}; + + std::vector<std::string> buttons_; }; } // namespace implementation |