Contenu récent par zertaul

  1. Z

    [TUTO] Télécodage et calibration d'un NAC / RCC / CIROCCO / CMB_NUM SANS Diagbox via Arduino

    It should working on CAN2004. Try to run it on the bench with Arduino.
  2. Z

    [TUTO] Télécodage et calibration d'un NAC / RCC / CIROCCO / CMB_NUM SANS Diagbox via Arduino

    You need Arduino with two CAN interfaces. On the first just listen, on the second send modified frame. I can read the frame. Which one do you need?
  3. Z

    [TUTO] Télécodage et calibration d'un NAC / RCC / CIROCCO / CMB_NUM SANS Diagbox via Arduino

    Try to change CAN frame 0xA2, bit3 and bit 4. Works with NAC. Something like that: if (button1.pressed) { button1.pressed = false; CanAddress = 0xA2; // wheel buttons CanSize = 6; if (bit3 == 0b00000000) { bit3 = 0b00000010; } else { bit3 = bit3 <<...
  4. Z

    [TUTO] Remplacement SMEG+ par un NAC Wave2 sur 308 T9 (+ BTA 2.0)

    You need to change NAC configuration (with Arduino) to get new camera correct working. New camera has other connector, so you need to rebuilt it.
  5. Z

    [TUTO] Adaptateur pour SMEG/NAC/Matrice CAN2010 sur BSI CAN2004

    Try attached file. It works by my car. Of course you need to edit this line: //char vintouse[] = "VF38DAHWTHL028249"; //508 and of course DEC/HEX makes no difference.
  6. Z

    [TUTO] Adaptateur pour SMEG/NAC/Matrice CAN2010 sur BSI CAN2004

    I'm doing it like this: //START INJECTING VIN else if (id == 0x336) //VIN 0 - 2 | HEX: 0x336 | DEC: 822 { canMsgSnd.data[0] = vintouse[0]; canMsgSnd.data[1] = vintouse[1]; canMsgSnd.data[2] = vintouse[2]; CAN1.sendMessage( & canMsgSnd)...
  7. Z

    [TUTO] Adaptateur pour SMEG/NAC/Matrice CAN2010 sur BSI CAN2004

    After change my navi unit trip computer reset doesn't work anymore. Does anybody know how to get it working again? Second question is how to get working Power button to put navi unit in sleep mode? I've checked communication from multifunction control switch panel (from 3008 II) and there is no...
  8. Z

    [TUTO] Adaptateur pour SMEG/NAC/Matrice CAN2010 sur BSI CAN2004

    Finally i got it working! Thank you guys, especially @VLud. The problem was of course false NAC coding. Thanks this software I've properly coded my NAC and now I've got 180° camera. I've also replaced my touchscreen and now it's looking like this:
  9. Z

    [TUTO] Adaptateur pour SMEG/NAC/Matrice CAN2010 sur BSI CAN2004

    Thanks for the clue. I tried telecoding BSI in different ways: - with parking sensors front + rear; - with parking sensors front + rear + reverse camera: - with parking sensors front + rear + reverse camera with guide lines: Still no luck. Can anybody with working reverse camera proof which...
  10. Z

    [TUTO] Adaptateur pour SMEG/NAC/Matrice CAN2010 sur BSI CAN2004

    Today I was once more by my Dealership and he coded my NAC with Peugeot 208 GTI VIN number. Still no luck :( The coding was successful, but there's no camera view on the display. The camera view doesn't work at all also by NAC test - only black screen with yellow arrow as I remember. My question...
  11. Z

    [TUTO] Adaptateur pour SMEG/NAC/Matrice CAN2010 sur BSI CAN2004

    Is it really your code? You've got: bool debugCAN0 = false; // Read data sent by ECUs from the car to Entertainment CAN bus using https://github.com/alexandreblin/python-can-monitor bool debugCAN1 = false; // Read data sent by the NAC / SMEG to Entertainment CAN bus using...
  12. Z

    [TUTO] Adaptateur pour SMEG/NAC/Matrice CAN2010 sur BSI CAN2004

    I didn't check my code in "real world", but it should works. Need logs/screenshoots from CAN0 and CAN1 at the same time. You can also again modify source code like this: // before } else if (id == 0x128 && len == 8) { if (canMsgRcv.data[0] == 0x63 && canMsgRcv.data[1] ==...
  13. Z

    [TUTO] Adaptateur pour SMEG/NAC/Matrice CAN2010 sur BSI CAN2004

    I'm not sure do I get you correct. Is there on the left side what are you getting on CAN0, and on the right side what do you want to send, right?
  14. Z

    [TUTO] Adaptateur pour SMEG/NAC/Matrice CAN2010 sur BSI CAN2004

    Could you post logs/screenshots from CanMonitor for both can interfaces?