From: Jan "Yenya" Kasprzak Date: Sat, 12 Apr 2014 20:22:32 +0000 (+0200) Subject: 5th brightness 2500 mA X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?p=bike-lights.git;a=commitdiff_plain;h=3e13c7f4abd65b939c1645d77cf6ed5e0124808e 5th brightness 2500 mA - use it in the daylight, and use brighter light in the night. --- 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 };