├── .gitignore ├── pictures └── VW-Golf-MK7-facelift_5-zones.png └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /pictures/VW-Golf-MK7-facelift_5-zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfixpl/mib2-backlight-menu/HEAD/pictures/VW-Golf-MK7-facelift_5-zones.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MIB2 backlight Menu 2 | Research about ambient illumination controls in MST2 infotainment system. 3 | 4 | Based on my findings in VW Golf MK7 with MIB2 Standard Discover Media system. 5 | 6 | ![VW Golf MK7 facelift Backlight menu with 5 zones](https://github.com/mrfixpl/mib2-backlight-menu/blob/main/pictures/VW-Golf-MK7-facelift_5-zones.png) 7 | 8 | ## `0x5F` MIB2 coding and adaptation 9 | ### Enable interior illumination controls 10 | `0x5F` → `adaptation` → `Car_Function_Adaptations_Gen2`: 11 | * → `menu_display_ambient_illumination` → `active` 12 | * → `menu_display_ambient_illumination_over_threshold_high` → `active` 13 | 14 | ### Enable MIB `0x5F` communication with BCM `0x09` 15 | `0x5F` → `adaptation` → `Car_Function_Adaptations_Gen2`: 16 | * → `Interieur light 0x08` → `activated` 17 | * → `Interieur light 0x08 msg bus` → `comfort data bus` 18 | 19 | ### Review vehicle variant coding 20 | `0x5F` → `Long Coding` → Bytes `0-2` 21 | 22 | My 2016 VW Golf had an issue with the background light submenu. To have it working I had to change the MU coding to facelift version of the vehicle. 23 | 24 | ## `0x09` BCM coding and adaptation 25 | *TODOOO* 26 | 27 | ## Zone controls `.gcc` modifications 28 | *TODOOO* 29 | 30 | ## GUI `.mcf` modifications 31 | *TODOOO* 32 | 33 | ## Credits, Reference, Tools 34 | * Cuzoe research: https://www.golfmk7.com/forums/index.php?threads/rgb-ambient-lighting-hopes-dreams-pre-facelift-mk7.392316/ 35 | * MIB STD2 Toolbox: https://github.com/olli991/mib-std2-pq-zr-toolbox 36 | * OBDeleven diagnostic interface (ref link): http://mr-fix.info/redirect/obdeleven 37 | 38 | ## Too good to be free? 39 | Coffee-powered development ☕ BuyCoffee → https://buycoffee.to/mrfix 40 | --------------------------------------------------------------------------------