[phpBB Debug] PHP Warning: in file [ROOT]/ext/cleantalk/antispam/model/CleantalkSFW.php on line 184: Undefined array key 1
UK-POLOS.NET - THE VW Polo Forum • Help needed: MQB MIB2 steering wheel CAN frames / MFSW button CAN IDs
Page 1 of 1

Help needed: MQB MIB2 steering wheel CAN frames / MFSW button CAN IDs

Posted: Wed Aug 19, 2026 5:12 pm
by Hiroki
Hi everyone,

I’m working on a PQ25 → MQB MIB2 CAN translator for my Polo 6R and I’m looking for some help obtaining the actual MQB CAN frames used for the multifunction steering wheel controls.

The setup is:

* Polo 6R / PQ25
* BCM Max
* MQB MIB2: 3Q0 035 844B
* Teensy 4.1 with two CAN interfaces
* Polo CAN side: 100 kbps
* MIB/MQB side: 500 kbps

I already have several parts of the translator working. For example, I’ve successfully translated the Polo ignition state to MQB Klemmen_Status_01 (0x3C0), and the MIB now correctly recognizes Terminal 15. Illumination/dimming translation is also working.

The remaining problem is the multifunction steering wheel.

I’ve already captured and decoded the Polo/PQ side. My wheel sends the following on 0x5C1:

Release 00 00 00 50
Next 02 00 00 50
Previous 03 00 00 50
Volume + 06 00 00 50
Volume - 07 00 00 50
Phone 1A 00 00 50
Voice 2A 00 00 50
Mute 2B 00 00 50

0x5BF also mirrors these frames on my Polo.

However, simply forwarding these frames to the MQB/MIB CAN at 500 kbps does not operate the MIB.

I’ve also experimentally tried PQ-style frames on 0x5C1 and 0x5BF, including:

0x5C1 06 00 00 50
0x5C1 06 00 01 11
0x5BF 06 00 00 00

with no response from the 3Q0 MIB.

So rather than continue guessing, I’m looking for a raw CAN capture from a genuine MQB vehicle with MIB2.

Ideally I need the frames seen on the Infotainment CAN / CAN network feeding J794 while individually pressing:

Volume +
Volume -
Mute
Next
Previous
Phone
Voice

A short capture of idle → button press → release → idle for each button would be perfect. CAN ID, DLC and all data bytes are what I need.

If anyone has CAN logs from a Golf Mk7, Polo 6C/AW, Tiguan AD1, Passat B8, etc. with MQB MIB2 and multifunction steering wheel, or knows the actual MQB message/ID used by J794 for these commands, I’d greatly appreciate the information.

I’m particularly interested in the actual frames reaching the infotainment side, rather than the LIN communication between the steering-wheel buttons and steering-column electronics.

I’m happy to share the finished PQ → MQB Teensy translator code and findings once this is working, as it may be useful for other people retrofitting MQB MIB2 units into PQ cars.

Thanks for any help.

Re: Help needed: MQB MIB2 steering wheel CAN frames / MFSW button CAN IDs

Posted: Wed Aug 19, 2026 6:31 pm
by ciclo
Hi Hiroki

First of all, we want to thank you for trusting the knowledge of this forum. We feel flattered, but to be completely honest, you’ve brought a NASA-level engineering query to a place where we are usually busy arguing about which engine oil is better or how to change a cabin filter! :mrgreen:
We are good at many car things, but your project is on a whole different level of specialization.

That being said, we love a good challenge and your PQ25 → MQB MIB2 translator project with the Teensy 4.1 sounds absolutely brilliant. Massive respect for already cracking the ignition state (Terminal 15 on 0x3C0) and the dimming translation. That’s a huge milestone!

Since we don't want you to leave empty-handed, here is the technical reason why your experiments aren't working on the 500 kbps MQB side:

1- State vs. Event: Your PQ25 steering wheel works on events (it shoots a frame when you press a button and another when you release it). MQB architecture is strictly cyclic (state-based). The MIB2 (J794) expects a continuous "heartbeat" message from the steering wheel controls roughly every 100ms. If you just send a single burst frame, the MIB2 simply ignores it.
2- The MQB IDs: On the MQB Infotainment bus, the Multi-Function Steering Wheel (MFL) typically broadcasts on ID 0x5BF (and sometimes interacts with 0x2C3), but the internal byte layout is completely different from your Polo's PQ format.

Where to find the exact raw logs without guessing: Instead of shooting in the dark, you should look into open-source autonomous driving projects. Check out the Comma.ai (OpenPilot) GitHub repository. If you look for their Volkswagen .dbc files (the database files that map the CAN bus), they have already reverse-engineered the entire MQB Infotainment network. You will find the exact bit-and-byte mapping for Volume +, Volume -, Mute, and Track Skip commands there.
Also, look up some GitHub projects regarding "MQB steering wheel retrofits on PQ cars". Developers there have already coded the exact translation matrices you need for your Teensy.

If you hit a brick wall with the dual-baudrate code (FlexCAN_T4), the Official PJRC Teensy Forum is your best bet. But please, once you get it working, come back here and show us! We’d love to see a Polo 6R rocking a fully functional MQB MIB2 unit thanks to a tiny Teensy.

Best of luck!🤗

Re: Help needed: MQB MIB2 steering wheel CAN frames / MFSW button CAN IDs

Posted: Wed Aug 19, 2026 7:02 pm
by Hiroki
Thanks for the reply bro.

You are too kind, you are THE one and only Master Ciclo :).

Thanks for the info. Will look into it and will keep you posted

Thank you!!!

Re: Help needed: MQB MIB2 steering wheel CAN frames / MFSW button CAN IDs

Posted: Thu Aug 20, 2026 6:19 pm
by scissa
I have no idea and knowledge about the topic, but you can check this post too, he also does mfsw upgrade with can/linbus

There are also other posts connected to this one. Check them also

https://www.drive2.ru/l/728553722946258141/

Re: Help needed: MQB MIB2 steering wheel CAN frames / MFSW button CAN IDs

Posted: Fri Aug 21, 2026 6:46 pm
by Hiroki
Thank you scissa. I have checked. what I need is very simple capture of the traffic from MIB quadlock CAN (pin E6 and E12).

### Suitable vehicles

Ideally:

- Polo 6C with factory MIB2
- Golf Mk7
- Passat B8
- Tiguan Mk2
- Another VW with a Delphi MIB2
- Especially useful if the MIB part number begins with `3Q0 035 8xx`

My unit is:

Delphi MIB2
Part number: 3Q0 035 844 B
Software: MU-S-S-US 722 / 0879

The recording does not require changing or coding anything in the car. It is passive listening only.

### Equipment required

Any USB CAN interface that works with SavvyCAN, such as:

- CANable or CANable 2.0
- CANtact
- Macchina
- PCAN-USB
- ValueCAN
- Another CAN logger capable of recording raw CAN frames

A Windows, Linux or macOS laptop running the free SavvyCAN program is also required.

Unfortunately, VCDS by itself cannot make this type of raw CAN recording.

### Connection

The adapter needs only:

CAN High ( E6 )
CAN Low ( E12 )
Ground

connected in parallel with the infotainment CAN wires going to the MIB2.

A Quadlock breakout/extension harness is recommended so no factory wiring needs to be cut.

Important:

- Use passive or listen-only mode if available.
- Set the CAN speed to `500 kbps`.
- Do not transmit any messages.
- Disable the adapter’s 120-ohm termination resistor because it is connecting to an existing vehicle network.
- Please verify the correct CAN High and CAN Low wires for your vehicle before connecting.

### Recording procedure

1. Connect the CAN interface and laptop.
2. Open SavvyCAN.
3. Select the CAN interface.
4. Set the bus speed to `500000`.
5. Enable listen-only mode if the adapter supports it.
6. Confirm that CAN messages are appearing.
7. Switch the ignition OFF.
8. Start recording.
9. Wait approximately 20 seconds.
10. Switch the ignition ON without starting the engine.
11. Leave the ignition ON for at least 90 seconds.
12. Press one steering-wheel volume button, if fitted.
13. Select reverse briefly, with the brake applied and the car safely stationary.
14. Switch the ignition OFF.
15. Continue recording for another 60 seconds.
16. Stop and save the recording as a SavvyCAN log or CSV file.

The complete recording should be approximately three minutes.

Please also include:

Vehicle model:
Model year:
MIB part number:
MIB manufacturer, if known:
Factory parking sensors: Yes/No
Factory reverse camera: Yes/No
Multifunction steering wheel: Yes/No

The recording may contain the vehicle VIN. If you do not want that posted publicly, please send the file to me privately. I will use it only to identify the CAN messages and timing required by the MIB.

Even a recording made by someone who already has CAN-logging equipment would be extremely helpful.

Thank you!