From 3e13c7f4abd65b939c1645d77cf6ed5e0124808e Mon Sep 17 00:00:00 2001 From: "Jan \"Yenya\" Kasprzak" Date: Sat, 12 Apr 2014 22:22:32 +0200 Subject: [PATCH] 5th brightness 2500 mA - use it in the daylight, and use brighter light in the night. --- firmware/control.c | 6 +++--- firmware/pwmled.c | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/firmware/control.c b/firmware/control.c index 2b1a736..73f5e8e 100644 --- a/firmware/control.c +++ b/firmware/control.c @@ -224,9 +224,9 @@ void pwmled_select_brightness() brightness = PWMLED_BRIGHTNESS(0, 0, 0, 0, 0); } else if (ambient_zone == 0) { if (dim_mode) - brightness = PWMLED_BRIGHTNESS(0, 1, 0, 0, 1); + brightness = PWMLED_BRIGHTNESS(0, 1, 0, 0, 2); else - brightness = PWMLED_BRIGHTNESS(1, 3, 2, 1, 3); + brightness = PWMLED_BRIGHTNESS(1, 3, 2, 1, 4); } else if (ambient_zone == 1) { if (dim_mode) brightness = PWMLED_BRIGHTNESS(0, 1, 0, 0, 1); @@ -235,7 +235,7 @@ void pwmled_select_brightness() } else if (ambient_zone == 2) { brightness = PWMLED_BRIGHTNESS(1, 3, 2, 1, 3); } else if (ambient_zone == 3) { - brightness = PWMLED_BRIGHTNESS(2, 4, 2, 2, 4); + brightness = PWMLED_BRIGHTNESS(2, 4, 2, 2, 5); } pwmled_set_brightness(brightness); diff --git a/firmware/pwmled.c b/firmware/pwmled.c index dd01b96..03d1adb 100644 --- a/firmware/pwmled.c +++ b/firmware/pwmled.c @@ -84,6 +84,7 @@ static uint16_t adc_targets_2[] = { MA_GAIN_TO_ADC( 500, 1), MA_GAIN_TO_ADC( 700, 1), MA_GAIN_TO_ADC(1500, 1), + MA_GAIN_TO_ADC(2500, 1), #endif }; -- 2.39.3