View Single Post
      08-04-2021, 08:08 AM   #40
djadam
Private
Italy
28
Rep
92
Posts

Drives: X1 F48
Join Date: Jul 2021
Location: Italy

iTrader: (0)

Quote:
Originally Posted by SDriver18i View Post
Quote:
Originally Posted by djadam View Post
Ok quick update on this. I have in fact managed to use the rear standard tail light pin to illuminate the LED part. A couple of caveats: 1. They only turn on when the lights are actually on (either by the switch or when it's dark on auto) and 2. They only turn on around 50% brightness, they go to 100% when the brake pedal is pressed.

Any ideas on how I can work around this?

I was thinking fog lights as brake lights and rear tail lights always on…
I will try coding above for fog lights as brake lights.
Does anyone know how to code rear tail lights always on?

Thanks
Enable rear daylight:

Daylight left tail light
BDC_BODY> 3064 LceLampMapping3, F7>
MAPPING_TAGFAHRL_1_H_L_OUTPUT = sl_l = 14 (initial state: off = 00)
OPTIONS (sl_l = 14, nsl_l = 1C, bfd_l = 1A, off = 00)

Daylight right outtail light
BDC_BODY> 3064 LceLampMapping3, F7>
MAPPING_TAGFAHRL_1_H_R_OUTPUT = sl_r = 15 (initial state: off = 00)
OPTIONS (sl_r = 15, nsl_r = 1D, bfd_r = 1B, off = 00)

Daylight left inner tail light
BDC_BODY> 3065 LceLampMapping4, ED>
MAPPING_TAGFAHRL_2_H_L_OUTPUT = sl_2_l = 16 (initial state: off = 00)
OPTIONS (bl_l = 18, sl_2_l = 16, off = 00)

Daylight right inner tail light
BDC_BODY> 3065 LceLampMapping4, ED>
MAPPING_TAGFAHRL_2_H_R_OUTPUT = sl_2_r = 17 (Initial state: off = 00)
OPTIONS (bl_r = 19, sl_2_r = 17, off = 00)

I think this is what I used to keep the rear DRL always on.
I'm guessing the first 2 are what I'm looking for?

I have already coded DRLs always on, this would code the standard tail light as a drl if I understood correctly?

Thanks

Attached is current state, when the lights are on when it's dark I also have the inner standard bulbs always on, would be good to turn these off too.

Thanks for all your help!
Attached Images
 
Appreciate 0