aboutsummaryrefslogtreecommitdiff
path: root/light/Light.h
diff options
context:
space:
mode:
Diffstat (limited to 'light/Light.h')
-rw-r--r--light/Light.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/light/Light.h b/light/Light.h
index f21e19e..958d215 100644
--- a/light/Light.h
+++ b/light/Light.h
@@ -32,7 +32,6 @@ namespace implementation {
struct Light : public ILight {
Light(std::pair<std::ofstream, uint32_t>&& lcd_backlight,
- std::vector<std::ofstream>&& button_backlight,
std::ofstream&& red_led, std::ofstream&& green_led, std::ofstream&& blue_led,
std::ofstream&& red_duty_pcts, std::ofstream&& green_duty_pcts, std::ofstream&& blue_duty_pcts,
std::ofstream&& red_start_idx, std::ofstream&& green_start_idx, std::ofstream&& blue_start_idx,
@@ -49,14 +48,12 @@ struct Light : public ILight {
private:
void setAttentionLight(const LightState& state);
void setBatteryLight(const LightState& state);
- void setButtonsBacklight(const LightState& state);
void setLcdBacklight(const LightState& state);
void setNotificationLight(const LightState& state);
void setSpeakerBatteryLightLocked();
void setSpeakerLightLocked(const LightState& state);
std::pair<std::ofstream, uint32_t> mLcdBacklight;
- std::vector<std::ofstream> mButtonBacklight;
std::ofstream mRedLed;
std::ofstream mGreenLed;
std::ofstream mBlueLed;