summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorprototux <jason@prototux.net>2020-10-01 21:05:29 +0200
committerprototux <jason@prototux.net>2020-10-01 21:05:29 +0200
commitc871a79b98d13914886a6dbe44472bf1ce18e351 (patch)
tree17018054ab73659f31d7a6c00ca354a357937f94
downloadpsa-uds-nac-c871a79b98d13914886a6dbe44472bf1ce18e351.tar
psa-uds-nac-c871a79b98d13914886a6dbe44472bf1ce18e351.tar.gz
psa-uds-nac-c871a79b98d13914886a6dbe44472bf1ce18e351.tar.bz2
psa-uds-nac-c871a79b98d13914886a6dbe44472bf1ce18e351.tar.lz
psa-uds-nac-c871a79b98d13914886a6dbe44472bf1ce18e351.tar.xz
psa-uds-nac-c871a79b98d13914886a6dbe44472bf1ce18e351.tar.zst
psa-uds-nac-c871a79b98d13914886a6dbe44472bf1ce18e351.zip
-rw-r--r--KEYS.md15
-rw-r--r--README.md27
-rw-r--r--algo_uds_auth.c28
-rw-r--r--nac_config.json13025
4 files changed, 13095 insertions, 0 deletions
diff --git a/KEYS.md b/KEYS.md
new file mode 100644
index 0000000..a49b651
--- /dev/null
+++ b/KEYS.md
@@ -0,0 +1,15 @@
+# ECUs keys
+
+| ECU | KEY |
+|-------------|------------------------------|
+| BSI AEE2004 | 2925 or B2B2 |
+| BSI AEE2010 | 5B4B or E4D8 |
+| NAC | 4F8F or D91C |
+| NCC | 1070 or 99FD |
+| AAS | 7673 or 898D |
+| AMPLI | 1E4B or A7D8 |
+| SMEG | 244D or ADDA |
+| MATT | 635F or ECEC |
+| CIROCCO | 716D or 8487 or FAFA |
+| BV6 | 6D6C or 8086 or F6F9 |
+| BV8 | 7648 or 8962 or FFD5 |
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..9fa27fa
--- /dev/null
+++ b/README.md
@@ -0,0 +1,27 @@
+# PSA UDS auth algorithm & NAC diagnostic informations
+# Ou: une lecon de karma et de securite par l'obscurite
+
+C'est l'histoire d'une personne, on va l'appeller V. V est une personne un peu parano, et ceci a tendance a attirer le mauvais karma.
+Cette personne pouvait devenir un hero, et creer une petite merveille, un outil opensource pour configurer les i-cockpit de chez PSA.
+Malheureusement pour elle, elle pris le chemin de la force obscure, et decida non seulement d'etre proprio, mais en plus d'obfusquer.
+Il faut dire que cette personne avait une croisade, il ne fallait surtout pas que ces secrets soient utilises de maniere commerciale.
+Il etait pret a tout pour defendre le secret devine, meme la creation d'un web service afin que nul ne puisse comprendre le precieux.
+Il le defendit avec peu de bravoure et beaucoup d'agressivite, ceci est sa plus grosse fierte, personne ne doit reproduire l'exploit!
+Quitte a violer les regles de bienseance de base, a publier des binaires prioprio et obfusques sur une plateforme de code opensource.
+
+
+Ceci est l'histoire de V, et ce repo contient les precieux tant defendus, ainsi qu'une lecon de karma.
+
+## Infos
+
+* Ce repo contient le json dechiffre contenant les IDs et le format des donnees de configuration du NAC
+* Il contient aussi une implementation de l'algo challenge-response des services UDS de PSA
+* C'est beaucoup de QnD, l'algo a ete reverse engineer en 5 soirs
+* Zero obfuscation, Zero AES, Zero web service proprio, Zero bullshit
+* Ce repo va probablement se faire takedown rapidement selon la reaction de V
+
+## Mot de la fin
+
+> Tu ne trouveras pas l'algorithme
+
+Challenge accepted.
diff --git a/algo_uds_auth.c b/algo_uds_auth.c
new file mode 100644
index 0000000..1c4ffba
--- /dev/null
+++ b/algo_uds_auth.c
@@ -0,0 +1,28 @@
+// UDS SA challenge-response implementation
+// This should match the authentication between diagbox and any ECU
+// Thanks to vlud for giving me the will to do it
+#include <inttypes.h>
+
+// Transformation function with PSA not-so-secret sauce
+int16_t transform(uint8_t data_msb, uint8_t data_lsb, uint8_t sec[])
+{
+ int16_t data = (data_msb << 8) | data_lsb;
+ int32_t result = ((data % sec[0]) * sec[2]) - ((data / sec[0]) * sec[1]);
+ if (result < 0)
+ result += (sec[0] * sec[2]) + sec[1];
+ return result;
+}
+
+// Challenge reponse calculation for a given pin and challenge
+// Challenge (seed) is 4 bytes and pin (key) is 2 bytes
+uint32_t compute_response(uint8_t pin[], uint8_t chg[])
+{
+ // Still hardcoded secrets
+ int8_t sec_1[3] = {0xB2, 0x3F, 0xAA};
+ int8_t sec_2[3] = {0xB1, 0x02, 0xAB};
+
+ // Compute each 16b part of the response, with the twist, and return it
+ int16_t res_msb = transform(pin[0], pin[1], sec_1) | transform(chg[0], chg[3], sec_2);
+ int16_t res_lsb = transform(chg[1], chg[2], sec_1) | transform(res_msb>>8, res_msb&0xFF, sec_2);
+ return (msb << 16) | lsb;
+}
diff --git a/nac_config.json b/nac_config.json
new file mode 100644
index 0000000..d60a1b6
--- /dev/null
+++ b/nac_config.json
@@ -0,0 +1,13025 @@
+{
+ "NAC": {
+ "VIN": "VFxxxx",
+ "SN": "xxxxxxx",
+ "zones": {
+ "2100": {
+ "name": "Telecoding_Fct_AAS",
+ "params": [
+ {
+ "name": "AKS",
+ "extra_name": "AAS_000",
+ "detail": {
+ "fr": "Aide au stationnement",
+ "en": "Parking assistance"
+ },
+ "pos": "05",
+ "mask": "C0",
+ "maskBinary": "11000000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Fonction absente ou présente à l'arrière",
+ "en": "Function absent or present at the rear"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "Fonction présente à l'avant et à l'arrière",
+ "en": "Function present at front and rear"
+ }
+ },
+ {
+ "value": "80",
+ "text": {
+ "fr": "Fonction présente à l'avant, à l'arrière et latérale",
+ "en": "Function present at the front, rear and side"
+ }
+ }
+ ]
+ },
+ {
+ "name": "D8R",
+ "extra_name": "ATT_DG_AAS_PUSH_000",
+ "detail": {
+ "fr": "Bouton physique \"Aide au stationnement\"",
+ "en": "Physical Button \"Parking assistance\""
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DMM",
+ "extra_name": "DG_AAS_PUSH_POS_000",
+ "detail": {
+ "fr": "Position de la touche tactile \"Aide au stationnement\"",
+ "en": "Touch button Position \"Parking assistance\""
+ },
+ "pos": "04",
+ "mask": "3E",
+ "maskBinary": "00111110"
+ },
+ {
+ "name": "DUL",
+ "extra_name": "AAS_PUSH_LED_000",
+ "detail": {
+ "fr": "Affichage de la touche tactile \"Aide au stationnement\"",
+ "en": "Display Touch button \"Parking assistance\""
+ },
+ "pos": "04",
+ "mask": "01",
+ "maskBinary": "00000001"
+ }
+ ]
+ },
+ "2101": {
+ "name": "Telecoding_Fct_AFIL",
+ "params": [
+ {
+ "name": "D8N",
+ "extra_name": "ATT_DG_AFIL_PUSH_000",
+ "detail": {
+ "fr": "Affichage de la touche tactile \"Alerte de franchissement involontaire de ligne\"",
+ "en": "Display Touch button \"Lane departure warning system (AFIL)\""
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DMK",
+ "extra_name": "DG_AFIL_PUSH_POS_000",
+ "detail": {
+ "fr": "Position touche tactile \"Alerte de franchissement involontaire de ligne\"",
+ "en": "Display Touch button \"Lane departure warning system (AFIL)\""
+ },
+ "pos": "04",
+ "mask": "3E",
+ "maskBinary": "00111110"
+ },
+ {
+ "name": "DMV",
+ "extra_name": "DG_AFIL_PUSH_PANEL_000",
+ "detail": {
+ "fr": "Bouton physique pour \"Alerte de franchissement involontaire de ligne\"",
+ "en": "Touch button Position \"Lane departure warning system (AFIL)\""
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ }
+ ]
+ },
+ "2103": {
+ "name": "Telecoding_Fct_ARTIV",
+ "params": [
+ {
+ "name": "DMX",
+ "extra_name": "DG_ARTIV_PUSH_POS_000",
+ "detail": {
+ "fr": "Position touche tactile \"Aide au respect du temps intervéhicules\"",
+ "en": "Physical Button \"Lane departure warning system (AFIL)\""
+ },
+ "pos": "04",
+ "mask": "1F",
+ "maskBinary": "00011111"
+ },
+ {
+ "name": "D8M",
+ "extra_name": "ATT_DG_ARTIV_PUSH_000",
+ "detail": {
+ "fr": "Affichage de la touche tactile \"Aide au respect du temps intervéhicules\"",
+ "en": "Touch button Position \"Distance Alert (ARTIV)\""
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "DMU",
+ "extra_name": "DG_ARTIV_PUSH_PANEL_000",
+ "detail": {
+ "fr": "Bouton physique pour \"Aide au respect du temps intervéhicules\"",
+ "en": "Display Touch button \"Distance Alert (ARTIV)\""
+ },
+ "pos": "04",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "DNH",
+ "extra_name": "DAT_DG_DRIVE_IVTRA_000",
+ "detail": {
+ "fr": "Aide au respect du temps intervéhicules",
+ "en": "Distance Alert (ARTIV)"
+ },
+ "pos": "05",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "DOE",
+ "extra_name": "DAT_DG_ARTIV_PUSHES_000",
+ "detail": {
+ "fr": "Présence et type de régulation de vitesse véhicule",
+ "en": "Presence and type of cruise control"
+ },
+ "pos": "05",
+ "mask": "C0",
+ "maskBinary": "11000000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Fonction absente",
+ "en": "Absent Function"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "Aide au respect du temps intervéhicules",
+ "en": "Distance alert"
+ }
+ },
+ {
+ "value": "80",
+ "text": {
+ "fr": "Régulation de vitesse véhicule adaptée",
+ "en": "Adapatative cruise control"
+ }
+ },
+ {
+ "value": "C0",
+ "text": {
+ "fr": "Aide au respect du temps intervéhicules et régulation de vitesse véhicule adaptée",
+ "en": "Distance alert and Adapatative cruise control"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "2104": {
+ "name": "Telecoding_Fct_AUDIO",
+ "params": [
+ {
+ "name": "B8J",
+ "extra_name": "FADER_000",
+ "detail": {
+ "fr": "Fonction Fader",
+ "en": "Fader function"
+ },
+ "pos": "04",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "BT6",
+ "extra_name": "ATT_DG_HIFI_000",
+ "detail": {
+ "fr": "Amplificateur HIFI",
+ "en": "HIFI Amplifier"
+ },
+ "pos": "04",
+ "mask": "E0",
+ "maskBinary": "11100000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Amplificateur HIFI absent",
+ "en": "Absent Amplifier"
+ }
+ },
+ {
+ "value": "20",
+ "text": {
+ "fr": "Amplificateur Standard",
+ "en": "Standard Amplifier"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "Amplificateur multiplexé",
+ "en": "Multiplexed Amplifier"
+ }
+ },
+ {
+ "value": "60",
+ "text": {
+ "fr": "Système Arkamys",
+ "en": "Arkamys System"
+ }
+ },
+ {
+ "value": "80",
+ "text": {
+ "fr": "Amplificateur multiplexé (gen 1 Chine)",
+ "en": "Multiplexed Amplifier (gen 1 China)"
+ }
+ },
+ {
+ "value": "A0",
+ "text": {
+ "fr": "Amplificateur multiplexé (gen 2)",
+ "en": "Multiplexed Amplifier (gen 2)"
+ }
+ },
+ {
+ "value": "C0",
+ "text": {
+ "fr": "Amplificateur multiplexé (gen 3)",
+ "en": "Multiplexed Amplifier (gen 3)"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DER",
+ "extra_name": "SPEED_SVR",
+ "detail": {
+ "fr": "Atténuation sonore en fonction de la vitesse",
+ "en": "Sound attenuation based on speed (km/h)"
+ },
+ "pos": "05",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DSE",
+ "extra_name": "SOUNDHARMONY_000",
+ "detail": {
+ "fr": "Affichage de l\"information de l\"harmonie sonore",
+ "en": "Sound Harmony display"
+ },
+ "pos": "04",
+ "mask": "02",
+ "maskBinary": "00000010"
+ },
+ {
+ "name": "DTT",
+ "extra_name": "NB_MICRO_000",
+ "detail": {
+ "fr": "Nombre de microphones",
+ "en": "Number of microphones"
+ },
+ "pos": "04",
+ "mask": "01",
+ "maskBinary": "00000001",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "1 microphone",
+ "en": "1 microphone"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "2 microphones",
+ "en": "2 microphones"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DZJ",
+ "extra_name": "OPTION_COLORATION_MO_000",
+ "detail": {
+ "fr": "Dynamic Sport Pack",
+ "en": "Dynamic Sport Pack"
+ },
+ "pos": "06",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DZM",
+ "extra_name": "TYPE_COLOR_MOTEUR_001",
+ "detail": {
+ "fr": "Type Dynamic Sport Pack",
+ "en": "Dynamic Sport Pack Type"
+ },
+ "pos": "06",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "DZT",
+ "extra_name": "PARAM_EFF_COLOR_MOTE_000",
+ "detail": {
+ "fr": "Efficacité de la coloration DSP",
+ "en": "DSP coloring sound efficiency"
+ },
+ "pos": "06",
+ "mask": "30",
+ "maskBinary": "00110000"
+ },
+ {
+ "name": "DZZ",
+ "extra_name": "LOI_DX_000",
+ "detail": {
+ "fr": "Loi DX pour la coloration DSP",
+ "en": "DX Law for DSP sound"
+ },
+ "pos": "06",
+ "mask": "0C",
+ "maskBinary": "00001100"
+ },
+ {
+ "name": "E0K",
+ "extra_name": "ACQ_IHM_COLOR_000",
+ "detail": {
+ "fr": "Provenance de l\"ordre de coloration DSP",
+ "en": "Origin of the DSP coloring order"
+ },
+ "pos": "06",
+ "mask": "02",
+ "maskBinary": "00000010"
+ },
+ {
+ "name": "E4Q",
+ "extra_name": "ATT_DG_AVC_000",
+ "detail": {
+ "fr": "Contrôle automatique du volume \"ACV\"",
+ "en": "Automatic Volume Control \"ACV\""
+ },
+ "pos": "06",
+ "mask": "01",
+ "maskBinary": "00000001"
+ },
+ {
+ "name": "E7V",
+ "extra_name": "TYPE_EXPORT_MEDIA_000",
+ "detail": {
+ "fr": "Type d'export informations audio",
+ "en": "Media informations export type"
+ },
+ "pos": "07",
+ "mask": "60",
+ "maskBinary": "01100000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "CAN-BUS",
+ "en": "CAN-BUS"
+ }
+ },
+ {
+ "value": "20",
+ "text": {
+ "fr": "LVDS",
+ "en": "LVDS"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "LVDS + CAN-BUS",
+ "en": "LVDS + CAN-BUS"
+ }
+ }
+ ]
+ },
+ {
+ "name": "E7W",
+ "extra_name": "AMPLI_SURRND_BY_CDC_000",
+ "detail": {
+ "fr": "Amplificateur alimenté par alimentation chargeur CD",
+ "en": "Amplifier powered by CD Charger"
+ },
+ "pos": "07",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "E81",
+ "extra_name": "TYPE_EXP_MEDIA_CAN_000",
+ "detail": {
+ "fr": "Type d'export informations audio sur CAN-BUS",
+ "en": "Audio informations export type on the CAN-BUS"
+ },
+ "pos": "07",
+ "mask": "18",
+ "maskBinary": "00011000"
+ },
+ {
+ "name": "E87",
+ "extra_name": "CENTRAL_SPK_SETTING_000",
+ "detail": {
+ "fr": "Voie centrale audio",
+ "en": "Central Speaker"
+ },
+ "pos": "07",
+ "mask": "02",
+ "maskBinary": "00000010"
+ }
+ ]
+ },
+ "2105": {
+ "name": "Telecoding_Fct_AVP",
+ "params": [
+ {
+ "name": "DMN",
+ "extra_name": "DG_PVC_PUSH_POS_000",
+ "detail": {
+ "fr": "Position de la touche tactile pour caméra avant",
+ "en": "Touch button Position \"Front Camera\""
+ },
+ "pos": "04",
+ "mask": "3E",
+ "maskBinary": "00111110"
+ },
+ {
+ "name": "DMY",
+ "extra_name": "DG_PVC_PUSH_PANEL_000",
+ "detail": {
+ "fr": "Bouton physique pour caméra avant",
+ "en": "Physical Button \"Front Camera\""
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "DUE",
+ "extra_name": "PVC_PUSH_000",
+ "detail": {
+ "fr": "Présence de la caméra d'aide visuelle panoramique",
+ "en": "Presence of the panoramic visual assistance camera"
+ },
+ "pos": "05",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DUF",
+ "extra_name": "PVC_MENU_000",
+ "detail": {
+ "fr": "Configuration de la caméra d'aide visuelle panoramique",
+ "en": "Configuration of the panoramic visual assistance camera"
+ },
+ "pos": "05",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "DUM",
+ "extra_name": "PVC_LEGAL_000",
+ "detail": {
+ "fr": "Message juridique affiché à l\"écran tactile (Fonction d'aide visuelle panoramique)",
+ "en": "Legal notice displayed on the multifunction touch screen (panoramic visual assistance camera)"
+ },
+ "pos": "05",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "DUO",
+ "extra_name": "PVC_TYPE_001",
+ "detail": {
+ "fr": "Type de caméra d'aide visuelle panoramique",
+ "en": "Type of panoramic visual assistance camera"
+ },
+ "pos": "05",
+ "mask": "18",
+ "maskBinary": "00011000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Caméra d'aide visuelle panoramique",
+ "en": "Panoramic visual assistance camera"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Caméra d'aide visuelle au recul 180°",
+ "en": "Virtual reversing assistance camera 180°"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Caméra d'aide visuelle à la manoeuvre",
+ "en": "Reversing assistance camera"
+ }
+ }
+ ]
+ },
+ {
+ "name": "E82",
+ "extra_name": "PANORAMIC_VC_000",
+ "detail": {
+ "fr": "Présence de la caméra d'aide visuelle panoramique",
+ "en": "Presence of the panoramic visual assistance camera"
+ },
+ "pos": "05",
+ "mask": "04",
+ "maskBinary": "00000100"
+ }
+ ]
+ },
+ "2106": {
+ "name": "Telecoding_Fct_AVR",
+ "params": [
+ {
+ "name": "DR3",
+ "extra_name": "REAR_VC_000",
+ "detail": {
+ "fr": "Caméra d'aide visuelle au recul",
+ "en": "Reversing assistance camera"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DUB",
+ "extra_name": "RVC_LEGAL_000",
+ "detail": {
+ "fr": "Message juridique affiché sur l\"écran tactile (Reversing assistance camera)",
+ "en": "Legal notice displayed on the multifunction touch screen (Reversing assistance camera)"
+ },
+ "pos": "04",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "DUC",
+ "extra_name": "RVC_REF_000",
+ "detail": {
+ "fr": "Affichage de la marque constructeur sur la caméra d'aide visuelle au recul",
+ "en": "Display of the manufacturer on the visual reversing assistance camera"
+ },
+ "pos": "04",
+ "mask": "10",
+ "maskBinary": "00010000"
+ }
+ ]
+ },
+ "2107": {
+ "name": "Telecoding_Fct_BT",
+ "params": [
+ {
+ "name": "APW",
+ "extra_name": "OPTION_BLUETOOTH_000",
+ "detail": {
+ "fr": "Fonction Bluetooth",
+ "en": "Bluetooth Function"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ }
+ ]
+ },
+ "2108": {
+ "name": "Telecoding_Fct_BTEL",
+ "params": [
+ {
+ "name": "AD4",
+ "extra_name": "T_EXT_000",
+ "detail": {
+ "fr": "Affichage de la température extérieure",
+ "en": "Display of external temperature"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "BSZ",
+ "extra_name": "ATT_DG_JDA_000",
+ "detail": {
+ "fr": "Affichage du journal des alertes",
+ "en": "Alerts history"
+ },
+ "pos": "10",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "D32",
+ "extra_name": "TYPE_ENERGIE_000",
+ "detail": {
+ "fr": "Energie véhicule",
+ "en": "Vehicle power source"
+ },
+ "pos": "04",
+ "mask": "78",
+ "maskBinary": "01111000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Essence",
+ "en": "Petrol"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Bicarburation Essence (GPL)",
+ "en": "Bicarburation Essence (GPL)"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Bicarburation Essence (GNV)",
+ "en": "Bicarburation Essence (GNV)"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Diesel",
+ "en": "Diesel"
+ }
+ },
+ {
+ "value": "20",
+ "text": {
+ "fr": "Essence et batterie de traction",
+ "en": "Petrol et traction battery"
+ }
+ },
+ {
+ "value": "28",
+ "text": {
+ "fr": "Essence et Alcool",
+ "en": "Petrol et Alcohol"
+ }
+ },
+ {
+ "value": "30",
+ "text": {
+ "fr": "Diesel et batterie de traction",
+ "en": "Diesel et traction battery"
+ }
+ },
+ {
+ "value": "38",
+ "text": {
+ "fr": "Batterie de traction",
+ "en": "Traction battery"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "Hydrogène",
+ "en": "Hydrogen"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DK3",
+ "extra_name": "SMARTAPPS_000",
+ "detail": {
+ "fr": "Fonction \"SMARTAPPS\"",
+ "en": "\"SMARTAPPS\" Function"
+ },
+ "pos": "06",
+ "mask": "10",
+ "maskBinary": "00010000"
+ },
+ {
+ "name": "DMD",
+ "extra_name": "DAT_DG_WELCOMEPAGE_C_000",
+ "detail": {
+ "fr": "Ecran d'accueil",
+ "en": "Home screen"
+ },
+ "pos": "04",
+ "mask": "02",
+ "maskBinary": "00000010"
+ },
+ {
+ "name": "DME",
+ "extra_name": "DAT_DG_BRAND_CFG_000",
+ "detail": {
+ "fr": "Marque constructeur",
+ "en": "Manufacturer's brand"
+ },
+ "pos": "06",
+ "mask": "E0",
+ "maskBinary": "11100000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Peugeot",
+ "en": "Peugeot"
+ }
+ },
+ {
+ "value": "20",
+ "text": {
+ "fr": "Citroen",
+ "en": "Citroen"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "DS",
+ "en": "DS"
+ }
+ },
+ {
+ "value": "60",
+ "text": {
+ "fr": "Toyota",
+ "en": "Toyota"
+ }
+ },
+ {
+ "value": "80",
+ "text": {
+ "fr": "Opel",
+ "en": "Opel"
+ }
+ },
+ {
+ "value": "A0",
+ "text": {
+ "fr": "Vauxhall",
+ "en": "Vauxhall"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DNY",
+ "extra_name": "OPTION_SD_MEDIA_EVO_000",
+ "detail": {
+ "fr": "OPTION SHUTDOWN SD MEDIA EVO",
+ "en": "OPTION SHUTDOWN SD MEDIA EVO"
+ },
+ "pos": "04",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "DRE",
+ "extra_name": "THEME_DEFAULT_000",
+ "detail": {
+ "fr": "Thème par défaut",
+ "en": "Default theme"
+ },
+ "pos": "07",
+ "mask": "F0",
+ "maskBinary": "11110000"
+ },
+ {
+ "name": "DSF",
+ "extra_name": "VEHICLE_000",
+ "detail": {
+ "fr": "Touche \"MENU\"",
+ "en": "\"MENU\" button"
+ },
+ "pos": "08",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DSG",
+ "extra_name": "OUTLINE_000",
+ "detail": {
+ "fr": "",
+ "en": ""
+ },
+ "pos": "08",
+ "mask": "60",
+ "maskBinary": "01100000"
+ },
+ {
+ "name": "DSZ",
+ "extra_name": "ICE_WARNING_TEMP_000",
+ "detail": {
+ "fr": "Seuil d'alerte de risque de verglas",
+ "en": "Warning threshold for risk of ice"
+ },
+ "pos": "09",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "numeric": "56",
+ "unit": "°C"
+ },
+ {
+ "name": "DUZ",
+ "extra_name": "DIAG_ML_ON_OFF_000",
+ "detail": {
+ "fr": "Fonction \"MirrorLink\"",
+ "en": "\"MirrorLink\" function"
+ },
+ "pos": "08",
+ "mask": "10",
+ "maskBinary": "00010000"
+ },
+ {
+ "name": "DZK",
+ "extra_name": "DRIVER_REST_CFG_000",
+ "detail": {
+ "fr": "Fonction de restriction du conducteur",
+ "en": "Driver Restriction function"
+ },
+ "pos": "11",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DZR",
+ "extra_name": "DIPO_ON_OFF_000",
+ "detail": {
+ "fr": "Fonction Carplay",
+ "en": "Carplay function"
+ },
+ "pos": "11",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "E3W",
+ "extra_name": "DG_CARLINE",
+ "detail": {
+ "fr": "Modèle véhicule",
+ "en": "Vehicle model"
+ },
+ "pos": "10",
+ "mask": "1E",
+ "maskBinary": "00011110",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "0x00",
+ "en": "0x00"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "0x02",
+ "en": "0x02"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "0x04",
+ "en": "0x04"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "0x06 - Wave2: Traveller | Wave2CN: 308S",
+ "en": "0x06 - Wave2: Traveller | Wave2CN: 308S"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "0x08 - Wave2: Traveller",
+ "en": "0x08 - Wave2: Traveller"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "0x0A - Wave2: Traveller / Jumpy | Wave2CN: 408",
+ "en": "0x0A - Wave2: Traveller / Jumpy | Wave2CN: 408"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "0x0C - Wave2: 3008 / C4 Spacetourer | Wave2CN: 2008",
+ "en": "0x0C - Wave2: 3008 / C4 Spacetourer | Wave2CN: 2008"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "0x0E - Wave2: 5008 / Grand C4 Spacetourer | Wave2CN: 508 - 0x0E",
+ "en": "0x0E - Wave2: 5008 / Grand C4 Spacetourer | Wave2CN: 508 - 0x0E"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "0x10 - Wave2: 301 / C3",
+ "en": "0x10 - Wave2: 301 / C3"
+ }
+ },
+ {
+ "value": "12",
+ "text": {
+ "fr": "0x12 - Wave2: 2008 / C-Elysée",
+ "en": "0x12 - Wave2: 2008 / C-Elysée"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "0x14 - Wave2: 208 / C3 Aircross | Wave2CN: 308",
+ "en": "0x14 - Wave2: 208 / C3 Aircross | Wave2CN: 308"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "0x16 - Wave2: 508 SW / C4 II | Wave4: New 208",
+ "en": "0x16 - Wave2: 508 SW / C4 II | Wave4: New 208"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "0x18 - Wave2: 508 / C4L | Wave2CN: 308S | Wave4: New 2008",
+ "en": "0x18 - Wave2: 508 / C4L | Wave2CN: 308S | Wave4: New 2008"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "0x1A - Wave2: 508 RHX / Spacetourer",
+ "en": "0x1A - Wave2: 508 RHX / Spacetourer"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "0x1C - Wave2: 308 | Wave4: New 5008",
+ "en": "0x1C - Wave2: 308 | Wave4: New 5008"
+ }
+ },
+ {
+ "value": "1E",
+ "text": {
+ "fr": "0x1E - Wave2: 308 SW | Wave4: New 3008 / DS7",
+ "en": "0x1E - Wave2: 308 SW | Wave4: New 3008 / DS7"
+ }
+ }
+ ]
+ },
+ {
+ "name": "E5B",
+ "extra_name": "DOORS_TYPE_001",
+ "detail": {
+ "fr": "Type d'ouvrants",
+ "en": "Type of accesses"
+ },
+ "pos": "13",
+ "mask": "C0",
+ "maskBinary": "11000000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "portes battantes",
+ "en": "rear doors"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "1 porte coulissante",
+ "en": "1 sliding door"
+ }
+ },
+ {
+ "value": "80",
+ "text": {
+ "fr": "2 portes coulissantes",
+ "en": "2 sliding doors"
+ }
+ }
+ ]
+ },
+ {
+ "name": "E88",
+ "extra_name": "ODS_TYPE_000",
+ "detail": {
+ "fr": "Localisation du sytème de détection d'obstacle",
+ "en": "Location of the obstacle detection system"
+ },
+ "pos": "13",
+ "mask": "18",
+ "maskBinary": "00011000"
+ },
+ {
+ "name": "EIO",
+ "extra_name": "PERSO_CFG_000",
+ "detail": {
+ "fr": "Personalisation combiné",
+ "en": "Instrument panel personalization"
+ },
+ "pos": "13",
+ "mask": "04",
+ "maskBinary": "00000100"
+ }
+ ]
+ },
+ "2109": {
+ "name": "Telecoding_Fct_CAFR",
+ "params": [
+ {
+ "name": "DMO",
+ "extra_name": "DG_CAFR_PUSH_POS_000",
+ "detail": {
+ "fr": "Position touche tactile \"Réglage Automatique Feux de Route\"",
+ "en": "Touch button Position \"Main beams assistant\""
+ },
+ "pos": "04",
+ "mask": "3E",
+ "maskBinary": "00111110"
+ },
+ {
+ "name": "DMZ",
+ "extra_name": "DG_CAFR_PUSH_PANEL_000",
+ "detail": {
+ "fr": "Bouton physique pour \"Réglage Automatique Feux de Route\"",
+ "en": "Physical Button \"Main beams assistant\""
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ }
+ ]
+ },
+ "2110": {
+ "name": "Telecoding_Fct_SCREEN2",
+ "params": [
+ {
+ "name": "DBZ",
+ "extra_name": "ATT_DG_ECRAN_SECOND_000",
+ "detail": {
+ "fr": "Type d'écran secondaire",
+ "en": "Type of secondary screen"
+ },
+ "pos": "04",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Element absent",
+ "en": "Absent"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Element présent",
+ "en": "Present"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "2112": {
+ "name": "Telecoding_Fct_HDC",
+ "params": [
+ {
+ "name": "DVB",
+ "extra_name": "CMD_TYP_000",
+ "detail": {
+ "fr": "Type de commandes sous volant de direction",
+ "en": "Type of steering-mounted controls"
+ },
+ "pos": "04",
+ "mask": "F0",
+ "maskBinary": "11110000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Etat 1",
+ "en": "State 1"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Etat 2",
+ "en": "State 2"
+ }
+ },
+ {
+ "value": "20",
+ "text": {
+ "fr": "Etat 3",
+ "en": "State 3"
+ }
+ },
+ {
+ "value": "30",
+ "text": {
+ "fr": "Etat 4",
+ "en": "State 4"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "Etat 5",
+ "en": "State 5"
+ }
+ },
+ {
+ "value": "50",
+ "text": {
+ "fr": "Etat 6",
+ "en": "State 6"
+ }
+ },
+ {
+ "value": "60",
+ "text": {
+ "fr": "Etat 7",
+ "en": "State 7"
+ }
+ },
+ {
+ "value": "70",
+ "text": {
+ "fr": "Etat 8",
+ "en": "State 8"
+ }
+ },
+ {
+ "value": "80",
+ "text": {
+ "fr": "Etat 9",
+ "en": "State 9"
+ }
+ },
+ {
+ "value": "90",
+ "text": {
+ "fr": "Etat 10",
+ "en": "State 10"
+ }
+ },
+ {
+ "value": "A0",
+ "text": {
+ "fr": "Etat 11",
+ "en": "State 11"
+ }
+ },
+ {
+ "value": "B0",
+ "text": {
+ "fr": "Etat 12",
+ "en": "State 12"
+ }
+ },
+ {
+ "value": "C0",
+ "text": {
+ "fr": "Etat 13",
+ "en": "State 13"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "2113": {
+ "name": "Telecoding_Fct_HY",
+ "params": [
+ {
+ "name": "DLZ",
+ "extra_name": "ATT_DG_HY_PRESENT_000",
+ "detail": {
+ "fr": "Présence de la page Hybride",
+ "en": "Hybrid page presence"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DNZ",
+ "extra_name": "DAT_DG_HY_BAT_LEVEL9_000",
+ "detail": {
+ "fr": "Seuil du bargraphe de la batterie niveau 9",
+ "en": "Battery level bargraph threshold 9"
+ },
+ "pos": "14",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DO0",
+ "extra_name": "DAT_DG_HY_BAT_LEVEL8_000",
+ "detail": {
+ "fr": "Seuil du bargraphe de la batterie niveau 8",
+ "en": "Battery level bargraph threshold 8"
+ },
+ "pos": "13",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DO1",
+ "extra_name": "DAT_DG_HY_BAT_LEVEL7_000",
+ "detail": {
+ "fr": "Seuil du bargraphe de la batterie niveau 7",
+ "en": "Battery level bargraph threshold 7"
+ },
+ "pos": "12",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DO2",
+ "extra_name": "DAT_DG_HY_BAT_LEVEL6_000",
+ "detail": {
+ "fr": "Seuil du bargraphe de la batterie niveau 6",
+ "en": "Battery level bargraph threshold 6"
+ },
+ "pos": "11",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DO3",
+ "extra_name": "DAT_DG_HY_BAT_LEVEL5_000",
+ "detail": {
+ "fr": "Seuil du bargraphe de la batterie niveau 5",
+ "en": "Battery level bargraph threshold 5"
+ },
+ "pos": "10",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DO4",
+ "extra_name": "DAT_DG_HY_BAT_LEVEL4_000",
+ "detail": {
+ "fr": "Seuil du bargraphe de la batterie niveau 4",
+ "en": "Battery level bargraph threshold 4"
+ },
+ "pos": "09",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DO5",
+ "extra_name": "DAT_DG_HY_BAT_LEVEL3_000",
+ "detail": {
+ "fr": "Seuil du bargraphe de la batterie niveau 3",
+ "en": "Battery level bargraph threshold 3"
+ },
+ "pos": "08",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DO6",
+ "extra_name": "DAT_DG_HY_BAT_LEVEL2_000",
+ "detail": {
+ "fr": "Seuil du bargraphe de la batterie niveau 2",
+ "en": "Battery level bargraph threshold 2"
+ },
+ "pos": "07",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DO7",
+ "extra_name": "DAT_DG_HY_BAT_LEVEL1_000",
+ "detail": {
+ "fr": "Seuil du bargraphe de la batterie niveau 1",
+ "en": "Battery level bargraph threshold 1"
+ },
+ "pos": "06",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DO9",
+ "extra_name": "DG_HY_BAT_HYST_UP_001",
+ "detail": {
+ "fr": "Hystérésis haut de la consommation hybride",
+ "en": "High hysteresis of hybrid consumption"
+ },
+ "pos": "04",
+ "mask": "0C",
+ "maskBinary": "00001100"
+ },
+ {
+ "name": "DOA",
+ "extra_name": "DG_HY_BAT_HYST_DOWN_000",
+ "detail": {
+ "fr": "Hystérésis bas de la consommation hybride",
+ "en": "Low hysteresis of hybrid consumption"
+ },
+ "pos": "04",
+ "mask": "30",
+ "maskBinary": "00110000"
+ },
+ {
+ "name": "DOC",
+ "extra_name": "DAT_DG_HY_BAT_LEVEL0_000",
+ "detail": {
+ "fr": "Seuil du bargraphe de la batterie",
+ "en": "Battery bargraph threshold"
+ },
+ "pos": "05",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DT2",
+ "extra_name": "HY_HISTO_PRESENT_000",
+ "detail": {
+ "fr": "Consommation du mode hybride",
+ "en": "Hybrid mode consumption"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ }
+ ]
+ },
+ "2114": {
+ "name": "Telecoding_Fct_INTERNET",
+ "params": [
+ {
+ "name": "BZ3",
+ "extra_name": "ATT_DG_INTERNET_000",
+ "detail": {
+ "fr": "Fonction internet",
+ "en": "Internet function"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "BZ8",
+ "extra_name": "VERR_INTERNET_000",
+ "detail": {
+ "fr": "",
+ "en": ""
+ },
+ "pos": "05",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "D2E",
+ "extra_name": "ATT_DG_CONF_INTERNET_001",
+ "detail": {
+ "fr": "Configuration de la fonction internet",
+ "en": "Configuration of internet function"
+ },
+ "pos": "04",
+ "mask": "60",
+ "maskBinary": "01100000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Internet et Intranet actifs",
+ "en": "Internet et Intranet active"
+ }
+ },
+ {
+ "value": "20",
+ "text": {
+ "fr": "Internet inactif et Intranet actifs",
+ "en": "Internet inactive et Intranet active"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "Internet actif et Intranet inactif",
+ "en": "Internet active et Intranet active"
+ }
+ }
+ ]
+ },
+ {
+ "name": "EHT",
+ "extra_name": "CONF_WEB_PORTAL_001",
+ "detail": {
+ "fr": "Configuration du portail Web",
+ "en": "Web portal configuration"
+ },
+ "pos": "04",
+ "mask": "10",
+ "maskBinary": "00010000"
+ }
+ ]
+ },
+ "2115": {
+ "name": "Telecoding_Fct_MPD",
+ "params": [
+ {
+ "name": "D8O",
+ "extra_name": "ATT_DG_MPD_PUSH_POS_000",
+ "detail": {
+ "fr": "Affichage de la touche tactile \"Mesure de place disponible\"",
+ "en": "Display Touch button \"Parking space measurement system\""
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DMP",
+ "extra_name": "DG_MPD_PUSH_POS_000",
+ "detail": {
+ "fr": "Position touche tactile \"Mesure de place disponible\"",
+ "en": "Touch button Position \"Parking space measurement system\""
+ },
+ "pos": "04",
+ "mask": "7C",
+ "maskBinary": "01111100"
+ },
+ {
+ "name": "DN0",
+ "extra_name": "DG_MPD_PUSH_PANEL_000",
+ "detail": {
+ "fr": "Bouton physique pour \"Mesure de place disponible\"",
+ "en": "Physical Button \"Parking space measurement system\""
+ },
+ "pos": "04",
+ "mask": "02",
+ "maskBinary": "00000010"
+ }
+ ]
+ },
+ "2116": {
+ "name": "Telecoding_Fct_NAV",
+ "params": [
+ {
+ "name": "BHC",
+ "extra_name": "NB_SATELLITES_FLAG_000",
+ "detail": {
+ "fr": "Nombre de satellites nécessaires pour activer les informations de positionnement GPS",
+ "en": "Number of satellites required to activate GPS positioning information"
+ },
+ "pos": "05",
+ "mask": "F0",
+ "maskBinary": "11110000"
+ },
+ {
+ "name": "BK6",
+ "extra_name": "RADAR_000",
+ "detail": {
+ "fr": "Affichage des alertes et des \"zones à risque\" sur l\"écran multifonction",
+ "en": "Display of alerts and \"risk areas\" on the multifunction screen"
+ },
+ "pos": "04",
+ "mask": "08",
+ "maskBinary": "00001000"
+ },
+ {
+ "name": "BT5",
+ "extra_name": "ATT_DG_VITESSE_LIMIT_000",
+ "detail": {
+ "fr": "Affichage de la limite de la vitesse",
+ "en": "Display of speed limit"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "D9G",
+ "extra_name": "ATT_DG_EXP_NAV_CSR_000",
+ "detail": {
+ "fr": "Affichage des consignes de navigation sans le nom des rues",
+ "en": "Display of navigation instructions without the name of the streets"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "D9H",
+ "extra_name": "ATT_DG_EXP_NAV_CAR_000",
+ "detail": {
+ "fr": "Affichage des consignes de navigation avec le nom des rues",
+ "en": "Display of navigation instructions with the name of the streets"
+ },
+ "pos": "04",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "D9I",
+ "extra_name": "ATT_DG_EXP_NAV_JVAR_000",
+ "detail": {
+ "fr": "Affichage des consignes de navigation avec le nom des rues et des intersections",
+ "en": "Display of navigation instructions with the name of the streets and intersections"
+ },
+ "pos": "04",
+ "mask": "10",
+ "maskBinary": "00010000"
+ },
+ {
+ "name": "DLD",
+ "extra_name": "DG_EXP_NAV_JVRP16_000",
+ "detail": {
+ "fr": "Affichage des consignes de navigation avec les intersections et changement de voies",
+ "en": "Display of navigation instructions with the name of the streets and lanes changing"
+ },
+ "pos": "04",
+ "mask": "02",
+ "maskBinary": "00000010"
+ },
+ {
+ "name": "DM4",
+ "extra_name": "ATT_DG_EXP_NAV_ILV_000",
+ "detail": {
+ "fr": "Limitation vitesse depuis Caméra Multifonction dans le pare-brise",
+ "en": "Speed limitation from Multifunction Camera in the windshield"
+ },
+ "pos": "04",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "DT3",
+ "extra_name": "DISPLAY_RISK_ALERT_000",
+ "detail": {
+ "fr": "Affichage des zones à risque",
+ "en": "Risky zones display"
+ },
+ "pos": "04",
+ "mask": "01",
+ "maskBinary": "00000001"
+ },
+ {
+ "name": "DT7",
+ "extra_name": "SELECT_CAR_TO_NAV_000",
+ "detail": {
+ "fr": "Sélection des cartes de navigation",
+ "en": "Selection of the navigation maps"
+ },
+ "pos": "07",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Continent",
+ "en": "Continent"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Pays",
+ "en": "Country"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Europe",
+ "en": "Europe"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "France",
+ "en": "France"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "2117": {
+ "name": "Telecoding_Fct_RADIO",
+ "params": [
+ {
+ "name": "B8C",
+ "extra_name": "AM_000",
+ "detail": {
+ "fr": "bande de fréquence AM activée",
+ "en": "AM waveband activated"
+ },
+ "pos": "04",
+ "mask": "10",
+ "maskBinary": "00010000"
+ },
+ {
+ "name": "B8P",
+ "extra_name": "NB_ANTENNE_000",
+ "detail": {
+ "fr": "Présence 2eme antenne",
+ "en": "2nd antenna presence"
+ },
+ "pos": "04",
+ "mask": "08",
+ "maskBinary": "00001000"
+ },
+ {
+ "name": "BFO",
+ "extra_name": "ANTENNE_1_000",
+ "detail": {
+ "fr": "Antenne FM1/AM Activée",
+ "en": "FM1/AM Antenna Activated"
+ },
+ "pos": "04",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "BFP",
+ "extra_name": "ANTENNE_2_000",
+ "detail": {
+ "fr": "Antenne FM2 Activée",
+ "en": "FM2 Antenna Activated"
+ },
+ "pos": "04",
+ "mask": "02",
+ "maskBinary": "00000010"
+ },
+ {
+ "name": "BT9",
+ "extra_name": "ATT_DG_SID_000",
+ "detail": {
+ "fr": "SID préférentiel (station TMC automatique)",
+ "en": "Preferred SID (TMC automatic station)"
+ },
+ "pos": "06",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "BTA",
+ "extra_name": "ATT_DG_RAD_SEUIL_000",
+ "detail": {
+ "fr": "Seuil de détection d'activité de la radio analogique",
+ "en": "Analogue radio activity detection threshold"
+ },
+ "pos": "05",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "numeric": "00",
+ "unit": "dB/µV"
+ },
+ {
+ "name": "DT4",
+ "extra_name": "EXPORT_TUNER_000",
+ "detail": {
+ "fr": "Type d'export radio",
+ "en": "Radio export type"
+ },
+ "pos": "07",
+ "mask": "C0",
+ "maskBinary": "11000000"
+ },
+ {
+ "name": "AKT",
+ "extra_name": "BTEL_COUNTRY_000",
+ "detail": {
+ "fr": "Zone géographique d'utilisation de la radio",
+ "en": "Geographic area of use of the radio"
+ },
+ "pos": "04",
+ "mask": "E0",
+ "maskBinary": "11100000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Europe",
+ "en": "Europe"
+ }
+ },
+ {
+ "value": "20",
+ "text": {
+ "fr": "Japon",
+ "en": "Japan"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "Amérique du Sud",
+ "en": "South America"
+ }
+ },
+ {
+ "value": "60",
+ "text": {
+ "fr": "Asie et Chine",
+ "en": "Asia and China"
+ }
+ },
+ {
+ "value": "80",
+ "text": {
+ "fr": "Arabie",
+ "en": "Arabia"
+ }
+ },
+ {
+ "value": "A0",
+ "text": {
+ "fr": "Etats Unis",
+ "en": "USA"
+ }
+ },
+ {
+ "value": "C0",
+ "text": {
+ "fr": "Corée",
+ "en": "Korea"
+ }
+ },
+ {
+ "value": "E0",
+ "text": {
+ "fr": "Canada",
+ "en": "Canada"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "2118": {
+ "name": "Telecoding_Fct_RADIO_NUM",
+ "params": [
+ {
+ "name": "BO5",
+ "extra_name": "ATT_DG_RADIO_NUM_000",
+ "detail": {
+ "fr": "Radio numérique",
+ "en": "Digital radio"
+ },
+ "pos": "05",
+ "mask": "C0",
+ "maskBinary": "11000000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Radio numérique désactivée",
+ "en": "Digital radio disabled"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "Radio numérique de type bande L activée",
+ "en": "Digital radio L waveband activated"
+ }
+ },
+ {
+ "value": "80",
+ "text": {
+ "fr": "Radio numérique de type bande 3 activée",
+ "en": "Digital radio 3 waveband activated"
+ }
+ },
+ {
+ "value": "C0",
+ "text": {
+ "fr": "Radio numérique de type toutes bandes activée",
+ "en": "Digital radio all wavebands activated"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "2119": {
+ "name": "Telecoding_Fct_SAM",
+ "params": [
+ {
+ "name": "D8P",
+ "extra_name": "ATT_DG_SAM_PUSH_000",
+ "detail": {
+ "fr": "Affichage de la touche tactile \"Surveillance d'angle mort\"",
+ "en": "Display Touch button \"Blind spot monitoring\""
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DMG",
+ "extra_name": "DG_SAM_PUSH_POS_000",
+ "detail": {
+ "fr": "Position touche tactile \"Surveillance d'angle mort\"",
+ "en": "Touch button Position \"Blind spot monitoring\""
+ },
+ "pos": "04",
+ "mask": "7C",
+ "maskBinary": "01111100"
+ },
+ {
+ "name": "DMR",
+ "extra_name": "DG_SAM_PUSH_PANEL_000",
+ "detail": {
+ "fr": "Bouton physique pour \"Surveillance d'angle mort\"",
+ "en": "Physical Button \"Blind spot monitoring\""
+ },
+ "pos": "04",
+ "mask": "02",
+ "maskBinary": "00000010"
+ }
+ ]
+ },
+ "2120": {
+ "name": "Telecoding_Fct_LKA",
+ "params": [
+ {
+ "name": "DM9",
+ "extra_name": "DAT_DG_LKA_PUSH_LED_000",
+ "detail": {
+ "fr": "Affichage de la touche tactile \"Maintien dans la voie\"",
+ "en": "Display Touch button \"Lane Guard system\""
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DML",
+ "extra_name": "DG_LKA_PUSH_POS_000",
+ "detail": {
+ "fr": "Position touche tactile \"Maintien dans la voie\"",
+ "en": "Touch button Position \"Lane Guard system\""
+ },
+ "pos": "04",
+ "mask": "3E",
+ "maskBinary": "00111110"
+ },
+ {
+ "name": "DMW",
+ "extra_name": "DG_LKA_PUSH_PANEL_000",
+ "detail": {
+ "fr": "Bouton physique pour \"Maintien dans la voie\"",
+ "en": "Physical Button \"Lane Guard system\""
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ }
+ ]
+ },
+ "2121": {
+ "name": "Telecoding_Fct_ACV",
+ "params": [
+ {
+ "name": "DMA",
+ "extra_name": "DAT_DG_ACV_PUSH_LED_000",
+ "detail": {
+ "fr": "Affichage de la touche tactile du contrôle automatique du volume \"ACV\"",
+ "en": "Display Touch button \"Automatic control of the volume \"ACV\"\""
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DN2",
+ "extra_name": "DG_ACV_PUSH_POS_000",
+ "detail": {
+ "fr": "Position de la touche tactile du contrôle automatique du volume \"ACV\"",
+ "en": "Touch button Position \"Automatic control of the volume \"ACV\"\""
+ },
+ "pos": "04",
+ "mask": "3E",
+ "maskBinary": "00111110"
+ },
+ {
+ "name": "DOB",
+ "extra_name": "DG_ACV_PUSH_PANEL_000",
+ "detail": {
+ "fr": "Bouton physique pour contrôle automatique du volume \"ACV\"",
+ "en": "Physical Button \"Automatic control of the volume \"ACV\"\""
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ }
+ ]
+ },
+ "2123": {
+ "name": "Telecoding_Fct_ALERTS",
+ "params": [
+ {
+ "name": "DNL",
+ "extra_name": "DAT_DG_ALARM_HISTORY_000",
+ "detail": {
+ "fr": "Historique des alertes de l'ordinateur de bord",
+ "en": "History of on-board computer alerts"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DNM",
+ "extra_name": "DAT_DG_ALARM_000",
+ "detail": {
+ "fr": "Alertes de l'ordinateur de bord (Véhicule sans matrice)",
+ "en": "On-board computer alerts (Vehicle without matrix)"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ }
+ ]
+ },
+ "2124": {
+ "name": "Telecoding_Fct_LUM",
+ "params": [
+ {
+ "name": "DNK",
+ "extra_name": "BTEL_DAT_DG_LUM_MANAG_000",
+ "detail": {
+ "fr": "Réglage de la luminosité",
+ "en": "Brightness adjustment"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ }
+ ]
+ },
+ "2125": {
+ "name": "Telecoding_Fct_OBC",
+ "params": [
+ {
+ "name": "DNE",
+ "extra_name": "DAT_DG_UREA_000",
+ "detail": {
+ "fr": "Niveau de solution d'urée",
+ "en": "Urea solution level"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "DNF",
+ "extra_name": "DAT_DG_TYRES_PRES_000",
+ "detail": {
+ "fr": "Pression des pneumatiques",
+ "en": "Tire pressure"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DSN",
+ "extra_name": "DATE_TIME_DISP_000",
+ "detail": {
+ "fr": "Affichage de la date et de l'heure",
+ "en": "Date and time display"
+ },
+ "pos": "07",
+ "mask": "02",
+ "maskBinary": "00000010"
+ },
+ {
+ "name": "DSO",
+ "extra_name": "DATE_TIME_MENU_000",
+ "detail": {
+ "fr": "Configuration de la date et de l'heure",
+ "en": "Date and time configuration"
+ },
+ "pos": "07",
+ "mask": "01",
+ "maskBinary": "00000001"
+ },
+ {
+ "name": "DSQ",
+ "extra_name": "DATE_TIME_ZONE_000",
+ "detail": {
+ "fr": "Fuseau horaire",
+ "en": "Time Zone"
+ },
+ "pos": "05",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "1A",
+ "text": {
+ "fr": "UTC-11",
+ "en": "UTC-11"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "UTC-10",
+ "en": "UTC-10"
+ }
+ },
+ {
+ "value": "1E",
+ "text": {
+ "fr": "UTC-9",
+ "en": "UTC-9"
+ }
+ },
+ {
+ "value": "20",
+ "text": {
+ "fr": "UTC-8",
+ "en": "UTC-8"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "UTC-7",
+ "en": "UTC-7"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "UTC-6",
+ "en": "UTC-6"
+ }
+ },
+ {
+ "value": "26",
+ "text": {
+ "fr": "UTC-5",
+ "en": "UTC-5"
+ }
+ },
+ {
+ "value": "27",
+ "text": {
+ "fr": "UTC-4h30",
+ "en": "UTC-4h30"
+ }
+ },
+ {
+ "value": "28",
+ "text": {
+ "fr": "UTC-4",
+ "en": "UTC-4"
+ }
+ },
+ {
+ "value": "29",
+ "text": {
+ "fr": "UTC-3h30",
+ "en": "UTC-3h30"
+ }
+ },
+ {
+ "value": "2A",
+ "text": {
+ "fr": "UTC-3",
+ "en": "UTC-3"
+ }
+ },
+ {
+ "value": "2C",
+ "text": {
+ "fr": "UTC-2",
+ "en": "UTC-2"
+ }
+ },
+ {
+ "value": "2E",
+ "text": {
+ "fr": "UTC-1",
+ "en": "UTC-1"
+ }
+ },
+ {
+ "value": "30",
+ "text": {
+ "fr": "UTC",
+ "en": "UTC"
+ }
+ },
+ {
+ "value": "32",
+ "text": {
+ "fr": "UTC+1",
+ "en": "UTC+1"
+ }
+ },
+ {
+ "value": "34",
+ "text": {
+ "fr": "UTC+2",
+ "en": "UTC+2"
+ }
+ },
+ {
+ "value": "36",
+ "text": {
+ "fr": "UTC+3",
+ "en": "UTC+3"
+ }
+ },
+ {
+ "value": "38",
+ "text": {
+ "fr": "UTC+4",
+ "en": "UTC+4"
+ }
+ },
+ {
+ "value": "3A",
+ "text": {
+ "fr": "UTC+5",
+ "en": "UTC+5"
+ }
+ },
+ {
+ "value": "3B",
+ "text": {
+ "fr": "UTC+5h30",
+ "en": "UTC+5h30"
+ }
+ },
+ {
+ "value": "3C",
+ "text": {
+ "fr": "UTC+6",
+ "en": "UTC+6"
+ }
+ },
+ {
+ "value": "3D",
+ "text": {
+ "fr": "UTC+6h30",
+ "en": "UTC+6h30"
+ }
+ },
+ {
+ "value": "3E",
+ "text": {
+ "fr": "UTC+7",
+ "en": "UTC+7"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "UTC+8",
+ "en": "UTC+8"
+ }
+ },
+ {
+ "value": "42",
+ "text": {
+ "fr": "UTC+9",
+ "en": "UTC+9"
+ }
+ },
+ {
+ "value": "43",
+ "text": {
+ "fr": "UTC+9h30",
+ "en": "UTC+9h30"
+ }
+ },
+ {
+ "value": "44",
+ "text": {
+ "fr": "UTC+10",
+ "en": "UTC+10"
+ }
+ },
+ {
+ "value": "46",
+ "text": {
+ "fr": "UTC+11",
+ "en": "UTC+11"
+ }
+ },
+ {
+ "value": "48",
+ "text": {
+ "fr": "UTC+12",
+ "en": "UTC+12"
+ }
+ },
+ {
+ "value": "4A",
+ "text": {
+ "fr": "UTC+13",
+ "en": "UTC+13"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DST",
+ "extra_name": "DATE_FORMAT_INIT_000",
+ "detail": {
+ "fr": "Format initial de la date",
+ "en": "Initial date format"
+ },
+ "pos": "07",
+ "mask": "C0",
+ "maskBinary": "11000000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "D/M/Y",
+ "en": "D/M/Y"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "D.M.Y",
+ "en": "D.M.Y"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "D-M-Y",
+ "en": "D-M-Y"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "M/D/Y",
+ "en": "M/D/Y"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DTO",
+ "extra_name": "DATE_TIME_SYNC_000",
+ "detail": {
+ "fr": "Synchronisation de la date",
+ "en": "Date synchronization"
+ },
+ "pos": "07",
+ "mask": "08",
+ "maskBinary": "00001000"
+ },
+ {
+ "name": "DTP",
+ "extra_name": "DATE_TIME_SYNC_INIT_000",
+ "detail": {
+ "fr": "Synchronisation initiale de la date",
+ "en": "Initial date synchronization"
+ },
+ "pos": "07",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "DTQ",
+ "extra_name": "DATE_TIME_ZONE_INIT_000",
+ "detail": {
+ "fr": "Initialisation du fuseau horaire",
+ "en": "Time zone initialization"
+ },
+ "pos": "06",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "32",
+ "text": {
+ "fr": "UTC",
+ "en": "UTC"
+ }
+ },
+ {
+ "value": "34",
+ "text": {
+ "fr": "UTC+1",
+ "en": "UTC+1"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DUD",
+ "extra_name": "OBC_PERMANENTPAGE_000",
+ "detail": {
+ "fr": "Affichage permanent de l'ordinateur de bord",
+ "en": "Permanent display of the on-board computer"
+ },
+ "pos": "04",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "DUG",
+ "extra_name": "ODO_PARTIAL_000",
+ "detail": {
+ "fr": "Affichage du kilométrage partiel",
+ "en": "Affichage du kilométrage partiel"
+ },
+ "pos": "04",
+ "mask": "10",
+ "maskBinary": "00010000"
+ },
+ {
+ "name": "DUH",
+ "extra_name": "OBC_000",
+ "detail": {
+ "fr": "Affichage de l'ordinateur de bord",
+ "en": "Partial mileage display"
+ },
+ "pos": "04",
+ "mask": "08",
+ "maskBinary": "00001000"
+ },
+ {
+ "name": "DUI",
+ "extra_name": "OBC_STT_000",
+ "detail": {
+ "fr": "Fonction Stop and Start",
+ "en": "Stop and Start function"
+ },
+ "pos": "04",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "DUJ",
+ "extra_name": "OBC_POPPAGE_000",
+ "detail": {
+ "fr": "Affichage en roulage des messages d'information provenant de l'ordinateur de bord à l'écran tactile",
+ "en": "Display of information messages from the on-board computer on the touch screen while driving"
+ },
+ "pos": "08",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DUK",
+ "extra_name": "OBC_PUSH_000",
+ "detail": {
+ "fr": "Bouton de commande de l'ordinateur de bord",
+ "en": "On-board computer control button"
+ },
+ "pos": "08",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "DUP",
+ "extra_name": "OBC_PAGE_000",
+ "detail": {
+ "fr": "Configuration de l'ordinateur de bord",
+ "en": "Configuration of the on-board computer"
+ },
+ "pos": "04",
+ "mask": "03",
+ "maskBinary": "00000011",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Consommation instantanée",
+ "en": "Instant consumption"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Trajet 1",
+ "en": "Routing 1"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Trajet 2",
+ "en": "Routing 2"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DUQ",
+ "extra_name": "MAINTEANCE_000",
+ "detail": {
+ "fr": "Affichage des données de maintenance",
+ "en": "Viewing maintenance data"
+ },
+ "pos": "08",
+ "mask": "20",
+ "maskBinary": "00100000"
+ }
+ ]
+ },
+ "2126": {
+ "name": "Telecoding_Fct_CPUSH",
+ "params": [
+ {
+ "name": "DR7",
+ "extra_name": "CPUSH_BLACK_PANEL_000",
+ "detail": {
+ "fr": "Touche blackpanel",
+ "en": "Blackpanel button"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "DR8",
+ "extra_name": "CPUSH_COLORCLUST_000",
+ "detail": {
+ "fr": "Thèmes combiné",
+ "en": "Instrument panel themes"
+ },
+ "pos": "04",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "DR9",
+ "extra_name": "CPUSH_CHECK_000",
+ "detail": {
+ "fr": "Touche \"CHECK\"",
+ "en": "\"CHECK\" button"
+ },
+ "pos": "04",
+ "mask": "10",
+ "maskBinary": "00010000"
+ },
+ {
+ "name": "DRB",
+ "extra_name": "CPUSH_DOMELIGHT_000",
+ "detail": {
+ "fr": "CPUSH DOMELIGHT",
+ "en": "CPUSH DOMELIGHT"
+ },
+ "pos": "04",
+ "mask": "04",
+ "maskBinary": "00000100"
+ }
+ ]
+ },
+ "2127": {
+ "name": "Telecoding_Fct_HMI",
+ "params": [
+ {
+ "name": "DSH",
+ "extra_name": "AMBIANCE_DEFAULT_000",
+ "detail": {
+ "fr": "Ambiance par défaut",
+ "en": "Ambiance par défaut"
+ },
+ "pos": "07",
+ "mask": "E0",
+ "maskBinary": "11100000"
+ },
+ {
+ "name": "DRT",
+ "extra_name": "MENU_AMBIANCE_1_000",
+ "detail": {
+ "fr": "Menu Ambiance 1",
+ "en": "Ambiance Menu 1"
+ },
+ "pos": "04",
+ "mask": "01",
+ "maskBinary": "00000001"
+ },
+ {
+ "name": "DRS",
+ "extra_name": "MENU_AMBIANCE_2_000",
+ "detail": {
+ "fr": "Menu Ambiance 2",
+ "en": "Ambiance Menu 2"
+ },
+ "pos": "04",
+ "mask": "02",
+ "maskBinary": "00000010"
+ },
+ {
+ "name": "DRR",
+ "extra_name": "MENU_AMBIANCE_3_000",
+ "detail": {
+ "fr": "Menu Ambiance 3",
+ "en": "Ambiance Menu 3"
+ },
+ "pos": "04",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "DRQ",
+ "extra_name": "MENU_AMBIANCE_4_000",
+ "detail": {
+ "fr": "Menu Ambiance 4",
+ "en": "Ambiance Menu 4"
+ },
+ "pos": "04",
+ "mask": "08",
+ "maskBinary": "00001000"
+ },
+ {
+ "name": "DRP",
+ "extra_name": "MENU_AMBIANCE_5_000",
+ "detail": {
+ "fr": "Menu Ambiance 5",
+ "en": "Ambiance Menu 5"
+ },
+ "pos": "04",
+ "mask": "10",
+ "maskBinary": "00010000"
+ },
+ {
+ "name": "DRO",
+ "extra_name": "MENU_AMBIANCE_6_000",
+ "detail": {
+ "fr": "Menu Ambiance 6",
+ "en": "Ambiance Menu 6"
+ },
+ "pos": "04",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "DRN",
+ "extra_name": "MENU_AMBIANCE_7_000",
+ "detail": {
+ "fr": "Menu Ambiance 7",
+ "en": "Ambiance Menu 7"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "DRM",
+ "extra_name": "MENU_AMBIANCE_8_000",
+ "detail": {
+ "fr": "Menu Ambiance 8",
+ "en": "Ambiance Menu 8"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DRU",
+ "extra_name": "FAMILY_NAME_1_000",
+ "detail": {
+ "fr": "Menu Véhicule 1",
+ "en": "Vehicle Menu 1"
+ },
+ "pos": "05",
+ "mask": "E0",
+ "maskBinary": "11100000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "20",
+ "text": {
+ "fr": "Sécurité",
+ "en": "Safety"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "Accès Véhicule / Stationnement",
+ "en": "Vehicle access / Parking"
+ }
+ },
+ {
+ "value": "60",
+ "text": {
+ "fr": "Feux",
+ "en": "Headlights"
+ }
+ },
+ {
+ "value": "80",
+ "text": {
+ "fr": "Eclairage de conduite",
+ "en": "Driving lights"
+ }
+ },
+ {
+ "value": "A0",
+ "text": {
+ "fr": "Eclairage de confort",
+ "en": "Comfort lighting"
+ }
+ },
+ {
+ "value": "C0",
+ "text": {
+ "fr": "Confort",
+ "en": "Comfort"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DSA",
+ "extra_name": "NOM_ITEM1_FAMILLE__1_000",
+ "detail": {
+ "fr": "Menu Véhicule 1 Item 1",
+ "en": "Vehicule menu 1 Item 1"
+ },
+ "pos": "08",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DSB",
+ "extra_name": "NOM_ITEM2_FAMILLE__1_000",
+ "detail": {
+ "fr": "Menu Véhicule 1 Item 2",
+ "en": "Vehicule menu 1 Item 2"
+ },
+ "pos": "09",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DSC",
+ "extra_name": "NOM_ITEM3_FAMILLE__1_000",
+ "detail": {
+ "fr": "Menu Véhicule 1 Item 3",
+ "en": "Vehicule menu 1 Item 3"
+ },
+ "pos": "10",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DY3",
+ "extra_name": "NOM_ITEM4_FAMILLE__1_001",
+ "detail": {
+ "fr": "Menu Véhicule 1 Item 4",
+ "en": "Vehicule menu 1 Item 4"
+ },
+ "pos": "11",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DZ6",
+ "extra_name": "NOM_ITEM5_FAMILLE_1_000",
+ "detail": {
+ "fr": "Menu Véhicule 1 Item 5",
+ "en": "Vehicule menu 1 Item 5"
+ },
+ "pos": "12",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DZ5",
+ "extra_name": "NOM_ITEM6_FAMILLE_1_000",
+ "detail": {
+ "fr": "Menu Véhicule 1 Item 6",
+ "en": "Vehicule menu 1 Item 6"
+ },
+ "pos": "13",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DZ4",
+ "extra_name": "NOM_ITEM7_FAMILLE_1_000",
+ "detail": {
+ "fr": "Menu Véhicule 1 Item 7",
+ "en": "Vehicule menu 1 Item 7"
+ },
+ "pos": "14",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DZ3",
+ "extra_name": "NOM_ITEM8_FAMILLE_1_000",
+ "detail": {
+ "fr": "Menu Véhicule 1 Item 8",
+ "en": "Vehicule menu 1 Item 8"
+ },
+ "pos": "15",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DZ2",
+ "extra_name": "NOM_ITEM9_FAMILLE_1_000",
+ "detail": {
+ "fr": "Menu Véhicule 1 Item 9",
+ "en": "Vehicule menu 1 Item 9"
+ },
+ "pos": "16",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DZ1",
+ "extra_name": "NOM_ITEM10_FAMILLE_1_000",
+ "detail": {
+ "fr": "Menu Véhicule 1 Item 10",
+ "en": "Vehicule menu 1 Item 10"
+ },
+ "pos": "17",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DRV",
+ "extra_name": "FAMILY_NAME_2_000",
+ "detail": {
+ "fr": "Menu Véhicule 2",
+ "en": "Vehicle Menu 2"
+ },
+ "pos": "05",
+ "mask": "1C",
+ "maskBinary": "00011100",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Sécurité",
+ "en": "Safety"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accès Véhicule / Stationnement",
+ "en": "Vehicle access / Parking"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Feux",
+ "en": "Headlights"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Eclairage de conduite",
+ "en": "Driving lights"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Eclairage de confort",
+ "en": "Comfort lighting"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Confort",
+ "en": "Comfort"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DS9",
+ "extra_name": "NOM_ITEM1_FAMILLE__2_000",
+ "detail": {
+ "fr": "Menu Véhicule 2 Item 1",
+ "en": "Vehicule menu 2 Item 1"
+ },
+ "pos": "18",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DS8",
+ "extra_name": "NOM_ITEM2_FAMILLE__2_000",
+ "detail": {
+ "fr": "Menu Véhicule 2 Item 2",
+ "en": "Vehicule menu 2 Item 2"
+ },
+ "pos": "19",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DS7",
+ "extra_name": "NOM_ITEM3_FAMILLE__2_000",
+ "detail": {
+ "fr": "Menu Véhicule 2 Item 3",
+ "en": "Vehicule menu 2 Item 3"
+ },
+ "pos": "20",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DS6",
+ "extra_name": "NOM_ITEM4_FAMILLE__2_000",
+ "detail": {
+ "fr": "Menu Véhicule 2 Item 4",
+ "en": "Vehicule menu 2 Item 4"
+ },
+ "pos": "21",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DZ0",
+ "extra_name": "NOM_ITEM5_FAMILLE_2_000",
+ "detail": {
+ "fr": "Menu Véhicule 2 Item 5",
+ "en": "Vehicule menu 2 Item 5"
+ },
+ "pos": "22",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DYZ",
+ "extra_name": "NOM_ITEM6_FAMILLE_2_000",
+ "detail": {
+ "fr": "Menu Véhicule 2 Item 6",
+ "en": "Vehicule menu 2 Item 6"
+ },
+ "pos": "23",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DYY",
+ "extra_name": "NOM_ITEM7_FAMILLE_2_001",
+ "detail": {
+ "fr": "Menu Véhicule 2 Item 7",
+ "en": "Vehicule menu 2 Item 7"
+ },
+ "pos": "24",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DYW",
+ "extra_name": "NOM_ITEM8_FAMILLE_2_000",
+ "detail": {
+ "fr": "Menu Véhicule 2 Item 8",
+ "en": "Vehicule menu 2 Item 8"
+ },
+ "pos": "25",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DYV",
+ "extra_name": "NOM_ITEM9_FAMILLE_2_001",
+ "detail": {
+ "fr": "Menu Véhicule 2 Item 9",
+ "en": "Vehicule menu 2 Item 9"
+ },
+ "pos": "26",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DYT",
+ "extra_name": "NOM_ITEM10_FAMILLE_2_000",
+ "detail": {
+ "fr": "Menu Véhicule 2 Item 10",
+ "en": "Vehicule menu 2 Item 10"
+ },
+ "pos": "27",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DRW",
+ "extra_name": "FAMILY_NAME_3_000",
+ "detail": {
+ "fr": "Menu Véhicule 3",
+ "en": "Vehicle Menu 3"
+ },
+ "pos": "06",
+ "mask": "E0",
+ "maskBinary": "11100000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "20",
+ "text": {
+ "fr": "Sécurité",
+ "en": "Safety"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "Accès Véhicule / Stationnement",
+ "en": "Vehicle access / Parking"
+ }
+ },
+ {
+ "value": "60",
+ "text": {
+ "fr": "Feux",
+ "en": "Headlights"
+ }
+ },
+ {
+ "value": "80",
+ "text": {
+ "fr": "Eclairage de conduite",
+ "en": "Driving lights"
+ }
+ },
+ {
+ "value": "A0",
+ "text": {
+ "fr": "Eclairage de confort",
+ "en": "Comfort lighting"
+ }
+ },
+ {
+ "value": "C0",
+ "text": {
+ "fr": "Confort",
+ "en": "Comfort"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DS2",
+ "extra_name": "NOM_ITEM1_FAMILLE__3_000",
+ "detail": {
+ "fr": "Menu Véhicule 3 Item 1",
+ "en": "Vehicule menu 3 Item 1"
+ },
+ "pos": "28",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DS3",
+ "extra_name": "NOM_ITEM2_FAMILLE__3_000",
+ "detail": {
+ "fr": "Menu Véhicule 3 Item 2",
+ "en": "Vehicule menu 3 Item 2"
+ },
+ "pos": "29",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DS4",
+ "extra_name": "NOM_ITEM3_FAMILLE__3_000",
+ "detail": {
+ "fr": "Menu Véhicule 3 Item 3",
+ "en": "Vehicule menu 3 Item 3"
+ },
+ "pos": "30",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DS5",
+ "extra_name": "NOM_ITEM4_FAMILLE__3_000",
+ "detail": {
+ "fr": "Menu Véhicule 3 Item 4",
+ "en": "Vehicule menu 3 Item 4"
+ },
+ "pos": "31",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DZ7",
+ "extra_name": "NOM_ITEM5_FAMILLE_3_000",
+ "detail": {
+ "fr": "Menu Véhicule 3 Item 5",
+ "en": "Vehicule menu 3 Item 5"
+ },
+ "pos": "32",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DZ8",
+ "extra_name": "NOM_ITEM6_FAMILLE_3_000",
+ "detail": {
+ "fr": "Menu Véhicule 3 Item 6",
+ "en": "Vehicule menu 3 Item 6"
+ },
+ "pos": "33",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DZ9",
+ "extra_name": "NOM_ITEM7_FAMILLE_3_000",
+ "detail": {
+ "fr": "Menu Véhicule 3 Item 7",
+ "en": "Vehicule menu 3 Item 7"
+ },
+ "pos": "34",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DYQ",
+ "extra_name": "NOM_ITEM8_FAMILLE_3_000",
+ "detail": {
+ "fr": "Menu Véhicule 3 Item 8",
+ "en": "Vehicule menu 3 Item 8"
+ },
+ "pos": "35",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DYP",
+ "extra_name": "NOM_ITEM9_FAMILLE_3_000",
+ "detail": {
+ "fr": "Menu Véhicule 3 Item 9",
+ "en": "Vehicule menu 3 Item 9"
+ },
+ "pos": "36",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DYO",
+ "extra_name": "NOM_ITEM10_FAMILLE_3_000",
+ "detail": {
+ "fr": "Menu Véhicule 3 Item 10",
+ "en": "Vehicule menu 3 Item 10"
+ },
+ "pos": "37",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DRX",
+ "extra_name": "FAMILY_NAME_4_000",
+ "detail": {
+ "fr": "Menu Véhicule 4",
+ "en": "Vehicle Menu 4"
+ },
+ "pos": "06",
+ "mask": "1C",
+ "maskBinary": "00011100",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Sécurité",
+ "en": "Safety"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accès Véhicule / Stationnement",
+ "en": "Vehicle access / Parking"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Feux",
+ "en": "Headlights"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Eclairage de conduite",
+ "en": "Driving lights"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Eclairage de confort",
+ "en": "Comfort lighting"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Confort",
+ "en": "Comfort"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DS1",
+ "extra_name": "NOM_ITEM1_FAMILLE__4_000",
+ "detail": {
+ "fr": "Menu Véhicule 4 Item 1",
+ "en": "Vehicule menu 4 Item 1"
+ },
+ "pos": "38",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DS0",
+ "extra_name": "NOM_ITEM2_FAMILLE__4_000",
+ "detail": {
+ "fr": "Menu Véhicule 4 Item 2",
+ "en": "Vehicule menu 4 Item 2"
+ },
+ "pos": "39",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DRZ",
+ "extra_name": "NOM_ITEM3_FAMILLE__4_000",
+ "detail": {
+ "fr": "Menu Véhicule 4 Item 3",
+ "en": "Vehicule menu 4 Item 3"
+ },
+ "pos": "40",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DRY",
+ "extra_name": "NOM_ITEM4_FAMILLE__4_000",
+ "detail": {
+ "fr": "Menu Véhicule 4 Item 4",
+ "en": "Vehicule menu 4 Item 4"
+ },
+ "pos": "41",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DYN",
+ "extra_name": "NOM_ITEM5_FAMILLE_4_000",
+ "detail": {
+ "fr": "Menu Véhicule 4 Item 5",
+ "en": "Vehicule menu 4 Item 5"
+ },
+ "pos": "42",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DYM",
+ "extra_name": "NOM_ITEM6_FAMILLE_4_000",
+ "detail": {
+ "fr": "Menu Véhicule 4 Item 6",
+ "en": "Vehicule menu 4 Item 6"
+ },
+ "pos": "43",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DYL",
+ "extra_name": "NOM_ITEM7_FAMILLE_4_000",
+ "detail": {
+ "fr": "Menu Véhicule 4 Item 7",
+ "en": "Vehicule menu 4 Item 7"
+ },
+ "pos": "44",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DYK",
+ "extra_name": "NOM_ITEM8_FAMILLE_4_000",
+ "detail": {
+ "fr": "Menu Véhicule 4 Item 8",
+ "en": "Vehicule menu 4 Item 8"
+ },
+ "pos": "45",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DYJ",
+ "extra_name": "NOM_ITEM9_FAMILLE_4_000",
+ "detail": {
+ "fr": "Menu Véhicule 4 Item 9",
+ "en": "Vehicule menu 4 Item 9"
+ },
+ "pos": "46",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DYH",
+ "extra_name": "NOM_ITEM10_FAMILLE_4_000",
+ "detail": {
+ "fr": "Menu Véhicule 4 Item 10",
+ "en": "Vehicule menu 4 Item 10"
+ },
+ "pos": "47",
+ "mask": "FF",
+ "maskBinary": "11111111",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Désactivé",
+ "en": "Disabled"
+ }
+ },
+ {
+ "value": "01",
+ "text": {
+ "fr": "Projecteurs directionnels",
+ "en": "Directional spotlights"
+ }
+ },
+ {
+ "value": "02",
+ "text": {
+ "fr": "Frein de parking automatique",
+ "en": "Automatic parking brake"
+ }
+ },
+ {
+ "value": "03",
+ "text": {
+ "fr": "Eclairage d'accompagnement",
+ "en": "Guide-me home lighting"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Eclairage d'ambiance",
+ "en": "Ambiance lighting"
+ }
+ },
+ {
+ "value": "05",
+ "text": {
+ "fr": "Feux de jour",
+ "en": "Daytime running lights"
+ }
+ },
+ {
+ "value": "06",
+ "text": {
+ "fr": "Essuyage en marche arrière",
+ "en": "Rear wiper in reverse"
+ }
+ },
+ {
+ "value": "07",
+ "text": {
+ "fr": "Dévérouillage: Conducteur seul",
+ "en": "Unlocking: Driver only"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Accueil Conducteur",
+ "en": "Driver welcome"
+ }
+ },
+ {
+ "value": "09",
+ "text": {
+ "fr": "Dévérouillage: Coffre seul",
+ "en": "Unlocking: Boot only"
+ }
+ },
+ {
+ "value": "0A",
+ "text": {
+ "fr": "Eclairage Adaptatif",
+ "en": "Mood lighting"
+ }
+ },
+ {
+ "value": "0B",
+ "text": {
+ "fr": "Aide au Stationnement",
+ "en": "Parking assistance"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Allumage automatique des feux",
+ "en": "Main beams assistant"
+ }
+ },
+ {
+ "value": "0D",
+ "text": {
+ "fr": "Dévérouillage: Cabine",
+ "en": "Unlocking: Cabin"
+ }
+ },
+ {
+ "value": "0E",
+ "text": {
+ "fr": "Surveillance Angle Morts",
+ "en": "Blind spot monitoring"
+ }
+ },
+ {
+ "value": "0F",
+ "text": {
+ "fr": "Eclairage d'accueil",
+ "en": "Welcome lighting"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Hayon/Ouvrant Motorisé",
+ "en": "Motorised tailgate / door"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "15",
+ "text": {
+ "fr": "Active Safety Brake (Réglage Distance)",
+ "en": "Active Safety Brake (Distance configuration)"
+ }
+ },
+ {
+ "value": "16",
+ "text": {
+ "fr": "Active Safety Brake (Activation)",
+ "en": "Active Safety Brake (Activation)"
+ }
+ },
+ {
+ "value": "17",
+ "text": {
+ "fr": "Rétroviseurs indexés sur la marche arrière",
+ "en": "Rearview mirrors indexed to reverse gear"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Reconnaissance / Recommandation vitesse",
+ "en": "Speed recognition / recommendation"
+ }
+ },
+ {
+ "value": "1A",
+ "text": {
+ "fr": "Accès Bras chargés",
+ "en": "Hands-Free opening"
+ }
+ },
+ {
+ "value": "1B",
+ "text": {
+ "fr": "Accès Bras chargés (auto condamnation)",
+ "en": "Hands-Free opening (self condemnation)"
+ }
+ },
+ {
+ "value": "1C",
+ "text": {
+ "fr": "Alerte attention conducteur",
+ "en": "Driver attention alert"
+ }
+ },
+ {
+ "value": "1D",
+ "text": {
+ "fr": "Désactivation permanante sécurité enfant",
+ "en": "Permanent child safety deactivation"
+ }
+ },
+ {
+ "value": "22",
+ "text": {
+ "fr": "Reconnaissance des panneaux",
+ "en": "Traffic Signs Recognition"
+ }
+ },
+ {
+ "value": "23",
+ "text": {
+ "fr": "Rabattement des rétroviseurs",
+ "en": "Blocking of door mirror folding"
+ }
+ },
+ {
+ "value": "24",
+ "text": {
+ "fr": "N/A - Eclairage de conduite",
+ "en": "N/A - Driving Lights"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "2128": {
+ "name": "Telecoding_Fct_SPY",
+ "params": [
+ {
+ "name": "DTR",
+ "extra_name": "ENGINEERING_MODE_000",
+ "detail": {
+ "fr": "Activation du Menu Expert",
+ "en": "Expert menu activation"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ }
+ ]
+ },
+ "2129": {
+ "name": "Telecoding_Fct_LVDS",
+ "params": [
+ {
+ "name": "DW0",
+ "extra_name": "LVDS_SPEED_000",
+ "detail": {
+ "fr": "Vitesse maximale du réseau LVDS",
+ "en": "LVDS speed"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "115.2 kbits/s",
+ "en": "115.2 kbits/s"
+ }
+ },
+ {
+ "value": "80",
+ "text": {
+ "fr": "500 kbits/s",
+ "en": "500 kbits/s"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DW1",
+ "extra_name": "LVDS_BWS_CONFIG_000",
+ "detail": {
+ "fr": "Configuration du réseau LVDS",
+ "en": "LVDS configuration"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "18 bits",
+ "en": "18 bits"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "24 bits",
+ "en": "24 bits"
+ }
+ }
+ ]
+ },
+ {
+ "name": "EG5",
+ "extra_name": "VIDEO_CODING_1_000",
+ "detail": {
+ "fr": "Résolution de l'affichage vidéo",
+ "en": "Video display resolution"
+ },
+ "pos": "05",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "EG6",
+ "extra_name": "VIDEO_CODING_2_000",
+ "detail": {
+ "fr": "Résolution de l'affichage vidéo",
+ "en": "Video display resolution"
+ },
+ "pos": "05",
+ "mask": "10",
+ "maskBinary": "00010000"
+ }
+ ]
+ },
+ "2130": {
+ "name": "Telecoding_Fct_BTA",
+ "params": [
+ {
+ "name": "E8Q",
+ "extra_name": "OPT_REMOTE_MNGT_VHL_000",
+ "detail": {
+ "fr": "Contrôle à distance",
+ "en": "Remote control"
+ },
+ "pos": "04",
+ "mask": "20",
+ "maskBinary": "00100000"
+ }
+ ]
+ },
+ "2131": {
+ "name": "Telecoding_Fct_ANDROID",
+ "params": [
+ {
+ "name": "EEN",
+ "extra_name": "BTEL_AAP_ON_OFF_000",
+ "detail": {
+ "fr": "Android Auto",
+ "en": "Android Auto"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ }
+ ]
+ },
+ "2133": {
+ "name": "Telecoding_Fct_WAVE3",
+ "params": [
+ {
+ "name": "DFU",
+ "extra_name": "REAR_LOCK_000_1",
+ "detail": {
+ "fr": "Vérouillage Arrière",
+ "en": "Rear Lock"
+ },
+ "pos": "05",
+ "mask": "08",
+ "maskBinary": "00001000"
+ },
+ {
+ "name": "E89",
+ "extra_name": "PERSO_PICTURE_EXPORT_000_1",
+ "detail": {
+ "fr": "Export des pochettes audio sur le combiné",
+ "en": "Audio covers export on the instrument panel"
+ },
+ "pos": "05",
+ "mask": "01",
+ "maskBinary": "00000001"
+ },
+ {
+ "name": "ED4",
+ "extra_name": "AUDIO_PRESET_GEN_000_1",
+ "detail": {
+ "fr": "Configuration Audio nouvelle génération",
+ "en": "New generation Audio Configuration"
+ },
+ "pos": "05",
+ "mask": "02",
+ "maskBinary": "00000010"
+ },
+ {
+ "name": "ED5",
+ "extra_name": "LOUDNESS_000_1",
+ "detail": {
+ "fr": "Fonction Loudness",
+ "en": "Loudness function"
+ },
+ "pos": "05",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "ELH",
+ "extra_name": "OPTION_STANDBYMODE_000_1",
+ "detail": {
+ "fr": "Option Standby",
+ "en": "Standby Option"
+ },
+ "pos": "05",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "ELI",
+ "extra_name": "PRIVACY_MODE_CFG_000_1",
+ "detail": {
+ "fr": "Configuration du mode privé",
+ "en": "Private mode configuration"
+ },
+ "pos": "05",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "ELJ",
+ "extra_name": "ODS_GEN_000_1",
+ "detail": {
+ "fr": "Detecteur d'obstacle nouvelle génération",
+ "en": "New Generation Obstacle detection system"
+ },
+ "pos": "05",
+ "mask": "10",
+ "maskBinary": "00010000"
+ },
+ {
+ "name": "EO0",
+ "extra_name": "CONTINUOUS_CPK_000_1",
+ "detail": {
+ "fr": "City Park Assist continu",
+ "en": "Continuous City Park Assist"
+ },
+ "pos": "05",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "EO1",
+ "extra_name": "CITYPARK_AS_000_1",
+ "detail": {
+ "fr": "City Park Assist",
+ "en": "City Park Assist"
+ },
+ "pos": "04",
+ "mask": "01",
+ "maskBinary": "00000001"
+ },
+ {
+ "name": "EO2",
+ "extra_name": "ACPK_000_1",
+ "detail": {
+ "fr": "City Park Assist",
+ "en": "City Park Assist"
+ },
+ "pos": "04",
+ "mask": "02",
+ "maskBinary": "00000010"
+ },
+ {
+ "name": "EO3",
+ "extra_name": "CPK_HMI_GEN_000_1",
+ "detail": {
+ "fr": "Menu City Park Assist",
+ "en": "City Park Assist Menu"
+ },
+ "pos": "04",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "EO5",
+ "extra_name": "CLIM_HEATED_SEAT_CFG_000_1",
+ "detail": {
+ "fr": "Configuration siège chauffant",
+ "en": "Heated seat configuration"
+ },
+ "pos": "04",
+ "mask": "08",
+ "maskBinary": "00001000"
+ },
+ {
+ "name": "EO6",
+ "extra_name": "AIRQUALITY_CFG_000_1",
+ "detail": {
+ "fr": "Système de qualité de l'air",
+ "en": "Air Quality System"
+ },
+ "pos": "04",
+ "mask": "30",
+ "maskBinary": "00110000"
+ },
+ {
+ "name": "EO7",
+ "extra_name": "ECOACH_CFG_000_1",
+ "detail": {
+ "fr": "Configuration ECO Climatisation",
+ "en": "ECO Air Conditioning Configuration"
+ },
+ "pos": "09",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "EO8",
+ "extra_name": "NV_PUSH_LED_PANEL_000_1",
+ "detail": {
+ "fr": "Touche physique pour \"Night Vision\"",
+ "en": "Physical button for \"Night Vision\""
+ },
+ "pos": "06",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "EO9",
+ "extra_name": "NV_PUSH_LED_000_1",
+ "detail": {
+ "fr": "Affichage de la touche tactile \"Night Vision\"",
+ "en": "Display Touch button \"Night Vision\""
+ },
+ "pos": "10",
+ "mask": "01",
+ "maskBinary": "00000001"
+ },
+ {
+ "name": "EOA",
+ "extra_name": "TYPE_PUSH_LIST_HDC_000_1",
+ "detail": {
+ "fr": "Type bouton LIST - High Digital Cockpit",
+ "en": "LIST type button - High Digital Cockpit"
+ },
+ "pos": "09",
+ "mask": "C0",
+ "maskBinary": "11000000"
+ },
+ {
+ "name": "EOB",
+ "extra_name": "TYPE_PUSH_SOURCE_HDC_000_1",
+ "detail": {
+ "fr": "Type bouton SOURCE - High Digital Cockpit",
+ "en": "SOURCE type button - High Digital Cockpit"
+ },
+ "pos": "08",
+ "mask": "03",
+ "maskBinary": "00000011"
+ },
+ {
+ "name": "EOC",
+ "extra_name": "SOURCE_PHONE_HDC_000_1",
+ "detail": {
+ "fr": "Type bouton PHONE - High Digital Cockpit",
+ "en": "PHONE type button - High Digital Cockpit"
+ },
+ "pos": "08",
+ "mask": "0C",
+ "maskBinary": "00001100"
+ },
+ {
+ "name": "EOD",
+ "extra_name": "ML_PRIVACY_ACTIVATIO_000_1",
+ "detail": {
+ "fr": "Mode privé pour Mirrorlink",
+ "en": "Private mode for Mirrorlink"
+ },
+ "pos": "10",
+ "mask": "02",
+ "maskBinary": "00000010"
+ },
+ {
+ "name": "EOE",
+ "extra_name": "DIPO_PRIVACY_ACTIVAT_000_1",
+ "detail": {
+ "fr": "Mode privé pour Apple Carplay",
+ "en": "Private mode for Apple Carplay"
+ },
+ "pos": "10",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "EOF",
+ "extra_name": "AAP_PRIVACY_ACTIVATI_000_1",
+ "detail": {
+ "fr": "Mode privé pour Android Auto",
+ "en": "Private mode for Android Auto"
+ },
+ "pos": "10",
+ "mask": "08",
+ "maskBinary": "00001000"
+ },
+ {
+ "name": "EOG",
+ "extra_name": "DYNAMIC_NORMAL_000_1",
+ "detail": {
+ "fr": "Mode Dynamique Normal",
+ "en": "Normal Dynamic mode"
+ },
+ "pos": "10",
+ "mask": "10",
+ "maskBinary": "00010000"
+ },
+ {
+ "name": "EOH",
+ "extra_name": "DYNAMIC_SPORT_000_1",
+ "detail": {
+ "fr": "Mode Dynamique Sport",
+ "en": "Sport Dynamic mode"
+ },
+ "pos": "10",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "EOI",
+ "extra_name": "DYNAMIC_COMFORT_000_1",
+ "detail": {
+ "fr": "Mode Dynamique Confort",
+ "en": "Comfort Dyanmic mode"
+ },
+ "pos": "10",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "EOJ",
+ "extra_name": "DYNAMIC_ECO_000_1",
+ "detail": {
+ "fr": "Mode Dynamique Eco",
+ "en": "Eco Dynamic mode"
+ },
+ "pos": "10",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "EOK",
+ "extra_name": "RENAME_PPS_MODE_CFG_000_1",
+ "detail": {
+ "fr": "Configuration mode AUTO Climatisation",
+ "en": "AUTO Mode configuration for air conditioning"
+ },
+ "pos": "09",
+ "mask": "01",
+ "maskBinary": "00000001"
+ },
+ {
+ "name": "EOL",
+ "extra_name": "LVDS_1_BWS_CONFIG_000_1",
+ "detail": {
+ "fr": "Configuration du réseau LVDS #1",
+ "en": "LVDS #1 configuration"
+ },
+ "pos": "09",
+ "mask": "06",
+ "maskBinary": "00000110"
+ },
+ {
+ "name": "EOM",
+ "extra_name": "LVDS_2_BWS_CONFIG_000_1",
+ "detail": {
+ "fr": "Configuration du réseau LVDS #2",
+ "en": "LVDS #2 configuration"
+ },
+ "pos": "09",
+ "mask": "18",
+ "maskBinary": "00011000"
+ },
+ {
+ "name": "EON",
+ "extra_name": "NV_PUSH_LED_POS_000_1",
+ "detail": {
+ "fr": "Position touche tactile \"Night Vision\"",
+ "en": "Touch button Position \"Night Vision\""
+ },
+ "pos": "07",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "ET9",
+ "extra_name": "MASS_SEAT_OPT_CFG_000",
+ "detail": {
+ "fr": "Type de siège massant",
+ "en": "Type of massage seat"
+ },
+ "pos": "08",
+ "mask": "C0",
+ "maskBinary": "11000000"
+ }
+ ]
+ },
+ "2145": {
+ "name": "Telecoding_Fct_AIO",
+ "params": [
+ {
+ "name": "BFG",
+ "extra_name": "HEURE_IHM_000",
+ "detail": {
+ "fr": "Affichage de l\"heure",
+ "en": "Time display"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "EQP",
+ "extra_name": "ATB_PRESENCE_001",
+ "detail": {
+ "fr": "Boîtier télématique autonome (BTA)",
+ "en": "Autonomous telematic box (BTA)"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ }
+ ]
+ },
+ "0106": {
+ "name": "Telecoding_Fct_BluetoothName",
+ "params": [
+ {
+ "name": "BTN",
+ "extra_name": "Bluetooth Name",
+ "detail": {
+ "fr": "Nom Bluetooth",
+ "en": "Bluetooth Name"
+ },
+ "pos": "04",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ }
+ ]
+ },
+ "F190": {
+ "name": "Telecoding_Fct_VIN",
+ "params": [
+ {
+ "name": "VIN",
+ "extra_name": "VIN",
+ "detail": {
+ "fr": "ignore",
+ "en": "ignore"
+ },
+ "pos": "04",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ }
+ ]
+ },
+ "F18C": {
+ "name": "Telecoding_Serial",
+ "params": [
+ {
+ "name": "SN",
+ "extra_name": "SN",
+ "detail": {
+ "fr": "ignore",
+ "en": "ignore"
+ },
+ "pos": "04",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ }
+ ]
+ },
+ "210B": {
+ "name": "Telecoding_Fct_CHECK",
+ "params": [
+ {
+ "name": "ERG",
+ "extra_name": "ACS_BTEL_CDC_000",
+ "detail": {
+ "fr": "Présence d'un chargeur CD",
+ "en": "CD Charger presence"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ }
+ ]
+ },
+ "210A": {
+ "name": "Telecoding_Fct_CHANGER_CD",
+ "params": [
+ {
+ "name": "ACS",
+ "extra_name": "CDC_000",
+ "detail": {
+ "fr": "Présence d'un chargeur CD",
+ "en": "CD Charger presence"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ }
+ ]
+ },
+ "210C": {
+ "name": "Telecoding_Fct_CITYPARK",
+ "params": [
+ {
+ "name": "D7L",
+ "extra_name": "ATT_DG_CFG_CITYPARK_000",
+ "detail": {
+ "fr": "Présence de la fonction stationnement semi-automatique",
+ "en": "Semi-automatic parking system presence"
+ },
+ "pos": "04",
+ "mask": "60",
+ "maskBinary": "01100000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Fonction absente",
+ "en": "Absent function"
+ }
+ },
+ {
+ "value": "20",
+ "text": {
+ "fr": "Fonction rangement en créneau disponible",
+ "en": "Parallel parking function present"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "Fonction rangement en créneau et stationnement perpendiculaire présentes",
+ "en": "Parallel and perpendicular parking function present"
+ }
+ }
+ ]
+ },
+ {
+ "name": "D8Q",
+ "extra_name": "ATT_DG_CITYPARK_PUSH_000",
+ "detail": {
+ "fr": "Affichage de la touche tactile \"Système de stationnement semi-automatique\"",
+ "en": "Display Touch button \"Semi-automatic parking system\""
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DMH",
+ "extra_name": "DG_CPAS_PUSH_POS_000",
+ "detail": {
+ "fr": "Position de la touche tactile \"Système de stationnement semi-automatique\"",
+ "en": "Touch button Position \"Semi-automatic parking system\""
+ },
+ "pos": "04",
+ "mask": "1F",
+ "maskBinary": "00011111"
+ },
+ {
+ "name": "DR4",
+ "extra_name": "CONF_DOP_000",
+ "detail": {
+ "fr": "Détection d'obstacle",
+ "en": "Obstacle detection"
+ },
+ "pos": "05",
+ "mask": "10",
+ "maskBinary": "00010000"
+ }
+ ]
+ },
+ "210D": {
+ "name": "Telecoding_Fct_CLIM",
+ "params": [
+ {
+ "name": "D8W",
+ "extra_name": "ATT_DG_PRES_RECYCL_000",
+ "detail": {
+ "fr": "Présence de la touche tactile de recyclage d'air habitacle",
+ "en": "Touch button for air recycling"
+ },
+ "pos": "04",
+ "mask": "08",
+ "maskBinary": "00001000"
+ },
+ {
+ "name": "D8Z",
+ "extra_name": "ATT_DG_PRES_CLIM_AR_000",
+ "detail": {
+ "fr": "Façade de climatisation arrière",
+ "en": "Rear air conditioning facade"
+ },
+ "pos": "04",
+ "mask": "10",
+ "maskBinary": "00010000"
+ },
+ {
+ "name": "D90",
+ "extra_name": "ATT_DG_PRES_AQS_000",
+ "detail": {
+ "fr": "Présence du système de mesure de l\"air ambiante dans l\"habitacle",
+ "en": "Presence of the ambient air measurement system in the car"
+ },
+ "pos": "04",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "D9Y",
+ "extra_name": "ATT_DG_PRES_TYPAGE_000",
+ "detail": {
+ "fr": "Type de régulation de la climatisation",
+ "en": "Type of air conditioning control"
+ },
+ "pos": "04",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "DBD",
+ "extra_name": "ATT_DG_TYPE_CLIM_001",
+ "detail": {
+ "fr": "Type de climatisation",
+ "en": "Type of air conditioning"
+ },
+ "pos": "05",
+ "mask": "E0",
+ "maskBinary": "11100000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Pas de climatisation",
+ "en": "No air conditioning"
+ }
+ },
+ {
+ "value": "20",
+ "text": {
+ "fr": "Climatisation Manuelle",
+ "en": "Manual air conditioning"
+ }
+ },
+ {
+ "value": "40",
+ "text": {
+ "fr": "Climatisation Automatique",
+ "en": "Automatic air conditioning"
+ }
+ },
+ {
+ "value": "60",
+ "text": {
+ "fr": "Climatisation Automatique Bi-Zone",
+ "en": "Dual-Zone Automatic Air Conditioning"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DBH",
+ "extra_name": "ATT_DG_TYPE_DIST_000",
+ "detail": {
+ "fr": "Type de distribution de l\"air",
+ "en": "Type of air distribution"
+ },
+ "pos": "04",
+ "mask": "01",
+ "maskBinary": "00000001"
+ },
+ {
+ "name": "DBI",
+ "extra_name": "ATT_DG_PRES_AC_MAX_000",
+ "detail": {
+ "fr": "Présence de la touche tactile \"AC MAX\"",
+ "en": "Presence of the \"AC max\" touch key"
+ },
+ "pos": "05",
+ "mask": "10",
+ "maskBinary": "00010000"
+ },
+ {
+ "name": "DFP",
+ "extra_name": "ENERGY_SAVER_PUSH_000",
+ "detail": {
+ "fr": "Touche tactile d'économie d'énergie",
+ "en": "Energy saving touch key"
+ },
+ "pos": "05",
+ "mask": "08",
+ "maskBinary": "00001000"
+ },
+ {
+ "name": "DFQ",
+ "extra_name": "AIRFLOW_BY_LEVEL_000",
+ "detail": {
+ "fr": "Touche tactile à niveau du contrôle du pulseur d'air",
+ "en": "Touch button on the air blower control"
+ },
+ "pos": "05",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "DFV",
+ "extra_name": "TEMP_ADJUST_000",
+ "detail": {
+ "fr": "Contrôle de la température",
+ "en": "Temperature control"
+ },
+ "pos": "06",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DFW",
+ "extra_name": "AIRFLOW_DIR_ADJUST_000",
+ "detail": {
+ "fr": "Distribution de l'air",
+ "en": "Air distribution"
+ },
+ "pos": "05",
+ "mask": "01",
+ "maskBinary": "00000001"
+ },
+ {
+ "name": "DFY",
+ "extra_name": "CLIM_AUTO_000",
+ "detail": {
+ "fr": "Bouton de climatisation automatique",
+ "en": "Automatic climate control button"
+ },
+ "pos": "06",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "DFZ",
+ "extra_name": "AIRFLOW_BY_INC_000",
+ "detail": {
+ "fr": "Touche tactile d'incrémentation du contrôle du pulseur d'air",
+ "en": "Air blower control increment Touch button"
+ },
+ "pos": "05",
+ "mask": "02",
+ "maskBinary": "00000010"
+ },
+ {
+ "name": "DG5",
+ "extra_name": "CLIM_ACTIVATION_000",
+ "detail": {
+ "fr": "Activation Menu Climatisation",
+ "en": "Air conditioning Menu activation"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DUR",
+ "extra_name": "CLIM_PRECOND_000",
+ "detail": {
+ "fr": "Présence du menu de préconditionnement",
+ "en": "Presence of the preconditioning menu"
+ },
+ "pos": "06",
+ "mask": "01",
+ "maskBinary": "00000001"
+ },
+ {
+ "name": "E2I",
+ "extra_name": "CLIM_RECALL_INFO_000",
+ "detail": {
+ "fr": "Recopie information climatisation en haut de l'écran",
+ "en": "Air conditioning information at the top of the screen"
+ },
+ "pos": "07",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "E8M",
+ "extra_name": "CLIM_OFF_BUTTON_000",
+ "detail": {
+ "fr": "Présence de la touche tactile d'arrêt de la climatisation",
+ "en": "Air conditioning stop Touch button"
+ },
+ "pos": "07",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "ED6",
+ "extra_name": "CLIM_MONO_000",
+ "detail": {
+ "fr": "Type de bouton MONO",
+ "en": "MONO button type"
+ },
+ "pos": "07",
+ "mask": "18",
+ "maskBinary": "00011000",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Sans Bouton",
+ "en": "No button"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Bouton Physique",
+ "en": "Physical button"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Bouton Tactile",
+ "en": "Touch Button"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "210E": {
+ "name": "Telecoding_Fct_DSG",
+ "params": [
+ {
+ "name": "DMI",
+ "extra_name": "DG_DGSI_PUSH_POS_000",
+ "detail": {
+ "fr": "Position Détection sous-gonflage",
+ "en": "Under-inflation detection Position"
+ },
+ "pos": "04",
+ "mask": "3E",
+ "maskBinary": "00111110"
+ },
+ {
+ "name": "DMT",
+ "extra_name": "DG_DGSI_PUSH_PANEL_000",
+ "detail": {
+ "fr": "Bouton physique pour détection sous-gonflage",
+ "en": "Physical Button for Under-inflation detection"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "DRG",
+ "extra_name": "INIT_DSGI_001",
+ "detail": {
+ "fr": "Bouton reset détection de sous-gonflage",
+ "en": "Under-inflation detection reset button"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ }
+ ]
+ },
+ "210F": {
+ "name": "Telecoding_Fct_SCREEN",
+ "params": [
+ {
+ "name": "DBM",
+ "extra_name": "ATT_DG_CHX_CAL_ECRAN_000",
+ "detail": {
+ "fr": "Type d'écran tactile",
+ "en": "Touch screen type"
+ },
+ "pos": "04",
+ "mask": "78",
+ "maskBinary": "01111000",
+ "listbox": [
+ {
+ "value": "08",
+ "text": {
+ "fr": "Ecran DG4TP",
+ "en": "DG4TP Screen"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Ecran DGT8C",
+ "en": "DGT8C Screen"
+ }
+ },
+ {
+ "value": "18",
+ "text": {
+ "fr": "Ecran DGT7CFF",
+ "en": "DGT7CFF Screen"
+ }
+ },
+ {
+ "value": "20",
+ "text": {
+ "fr": "Ecran DGT7C",
+ "en": "DGT7C Screen"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "211A": {
+ "name": "Telecoding_Fct_STT",
+ "params": [
+ {
+ "name": "D8T",
+ "extra_name": "ATT_DG_STT_PUSH_000",
+ "detail": {
+ "fr": "Affichage de la touche tactile \"Stop and Start\"",
+ "en": "Display Touch button \"Stop and Start\""
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "DMQ",
+ "extra_name": "DG_STT_PUSH_LED_POS_000",
+ "detail": {
+ "fr": "Position touche tactile \"Stop and Start\"",
+ "en": "Touch button Position \"Stop and Start\""
+ },
+ "pos": "04",
+ "mask": "3E",
+ "maskBinary": "00111110"
+ },
+ {
+ "name": "DN1",
+ "extra_name": "DG_STT_PUSH_PANEL_000",
+ "detail": {
+ "fr": "Bouton physique pour \"Stop and Start\"",
+ "en": "Physical Button \"Stop and Start\""
+ },
+ "pos": "04",
+ "mask": "01",
+ "maskBinary": "00000001"
+ }
+ ]
+ },
+ "211B": {
+ "name": "Telecoding_Fct_XVV",
+ "params": [
+ {
+ "name": "DRK",
+ "extra_name": "XVV_MAX_000",
+ "detail": {
+ "fr": "Vitesse maximale de régulation et limitation de vitesse",
+ "en": "Maximum cruise control and speed limitation"
+ },
+ "pos": "05",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DRL",
+ "extra_name": "XVV_MIN_000",
+ "detail": {
+ "fr": "Vitesse minimale de régulation et limitation de vitesse",
+ "en": "Minimal cruise control and speed limitation"
+ },
+ "pos": "06",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DSI",
+ "extra_name": "LVV_MAX_000",
+ "detail": {
+ "fr": "Vitesse maximale de limitation de vitesse",
+ "en": "Maximum speed of the speed limiter"
+ },
+ "pos": "07",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DSJ",
+ "extra_name": "LVV_MIN_000",
+ "detail": {
+ "fr": "Vitesse minimale de limitation de vitesse",
+ "en": "Minimum speed of the speed limiter"
+ },
+ "pos": "08",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DSK",
+ "extra_name": "RVV_MAX_000",
+ "detail": {
+ "fr": "Vitesse maximale de régulation de vitesse",
+ "en": "Maximum speed of the cruise control"
+ },
+ "pos": "09",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DSL",
+ "extra_name": "RVV_MIN_000",
+ "detail": {
+ "fr": "Vitesse minimale de régulation de vitesse",
+ "en": "Minimum speed of the cruise control"
+ },
+ "pos": "10",
+ "mask": "FF",
+ "maskBinary": "11111111"
+ },
+ {
+ "name": "DSV",
+ "extra_name": "CONF_RVVI_000",
+ "detail": {
+ "fr": "Régulation de vitesse véhicule adaptée",
+ "en": "Adapatative cruise control"
+ },
+ "pos": "04",
+ "mask": "10",
+ "maskBinary": "00010000"
+ },
+ {
+ "name": "DSW",
+ "extra_name": "RLVV_MEMORIZATION_000",
+ "detail": {
+ "fr": "Rappel des vitesses mémorisées",
+ "en": "Memorized speeds"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "DSX",
+ "extra_name": "RLVV_SELECTION_000",
+ "detail": {
+ "fr": "Rappel des vitesses sélectionnées",
+ "en": "Selected speeds"
+ },
+ "pos": "04",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "DTG",
+ "extra_name": "XVV_DMD_000",
+ "detail": {
+ "fr": "Affichage du rappel des consignes de régulation et limitation de vitesse véhicule",
+ "en": "Display of the vehicle cruise control and speed limiter instructions reminder"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "E03",
+ "extra_name": "XVV_STOPADJUST_000",
+ "detail": {
+ "fr": "Ajustement de la vitesse limite de régulation et limitation de vitesse",
+ "en": "Speed Adjustment of the cruise control and speed limiter"
+ },
+ "pos": "04",
+ "mask": "08",
+ "maskBinary": "00001000"
+ },
+ {
+ "name": "E09",
+ "extra_name": "RVV_RVVI_PUSH_LED_000",
+ "detail": {
+ "fr": "Affichage de la touche tactile de sélection de la \"Régulation de vitesse véhicule adaptée\"",
+ "en": "Display Touch button \"Adapatative Cruise control\""
+ },
+ "pos": "04",
+ "mask": "04",
+ "maskBinary": "00000100"
+ },
+ {
+ "name": "E4I",
+ "extra_name": "RVV_RVVI_PUSH_LED_PA_000",
+ "detail": {
+ "fr": "Bouton physique pour la sélection de la \"Régulation de vitesse véhicule adaptée\"",
+ "en": "Physical Button \"Adapatative Cruise Control\""
+ },
+ "pos": "11",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "E4J",
+ "extra_name": "RVV_RVVI_PUSH_LED_PO_000",
+ "detail": {
+ "fr": "Position de la touche tactile de sélection de la \"Régulation de vitesse véhicule adaptée\"",
+ "en": "Touch button Position \"Adapatative Cruise Control\""
+ },
+ "pos": "11",
+ "mask": "7C",
+ "maskBinary": "01111100"
+ }
+ ]
+ },
+ "211C": {
+ "name": "Telecoding_Fct_WIFI",
+ "params": [
+ {
+ "name": "DTU",
+ "extra_name": "CONNECT_WIFI_CLI_000",
+ "detail": {
+ "fr": "Présence du Wi-Fi",
+ "en": "Wi-Fi presence"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "DTW",
+ "extra_name": "CONNECT_WIFI_AP_000",
+ "detail": {
+ "fr": "Fonction Internet via Wi-Fi",
+ "en": "Internet via Wi-Fi function"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "DUU",
+ "extra_name": "HW_WIFI_000",
+ "detail": {
+ "fr": "Module Wi-Fi",
+ "en": "Wi-Fi Module"
+ },
+ "pos": "04",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "E2R",
+ "extra_name": "OPTION_WIFI_000",
+ "detail": {
+ "fr": "Fonction Wi-Fi",
+ "en": "Wi-Fi Function"
+ },
+ "pos": "04",
+ "mask": "10",
+ "maskBinary": "00010000"
+ }
+ ]
+ },
+ "211F": {
+ "name": "Telecoding_Fct_LANG",
+ "params": [
+ {
+ "name": "DNJ",
+ "extra_name": "DAT_DNN_BTEL_DAT_DG_LANGUAGE_0000",
+ "detail": {
+ "fr": "Langue par défaut",
+ "en": "Default Language"
+ },
+ "pos": "04",
+ "mask": "FC",
+ "maskBinary": "11111100",
+ "listbox": [
+ {
+ "value": "00",
+ "text": {
+ "fr": "Français",
+ "en": "French"
+ }
+ },
+ {
+ "value": "04",
+ "text": {
+ "fr": "Anglais",
+ "en": "English"
+ }
+ },
+ {
+ "value": "08",
+ "text": {
+ "fr": "Allemand",
+ "en": "German"
+ }
+ },
+ {
+ "value": "0C",
+ "text": {
+ "fr": "Espagnol",
+ "en": "Spanish"
+ }
+ },
+ {
+ "value": "10",
+ "text": {
+ "fr": "Italien",
+ "en": "Italian"
+ }
+ },
+ {
+ "value": "14",
+ "text": {
+ "fr": "Portugais",
+ "en": "Portuguese"
+ }
+ }
+ ]
+ },
+ {
+ "name": "DRJ",
+ "extra_name": "UNITS_LANGUAGE_000",
+ "detail": {
+ "fr": "Affichage des langues et des unités",
+ "en": "Display of languages and units"
+ },
+ "pos": "04",
+ "mask": "02",
+ "maskBinary": "00000010"
+ }
+ ]
+ },
+ "211D": {
+ "name": "Telecoding_Fct_ASR",
+ "params": [
+ {
+ "name": "E7X",
+ "extra_name": "ASR_PUSH_LED_PANEL_000",
+ "detail": {
+ "fr": "Bouton physique pour la fonction antipatinnage des roues (ASR+)",
+ "en": "Physical Button \"Traction Control\""
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "E7Y",
+ "extra_name": "ASR_PUSH_LED_POS_000",
+ "detail": {
+ "fr": "Position touche tactile de la fonction antipatinnage des roues (ASR+)",
+ "en": "Touch button Position of Traction Control function (ASR+)"
+ },
+ "pos": "04",
+ "mask": "3E",
+ "maskBinary": "00111110"
+ },
+ {
+ "name": "E7Z",
+ "extra_name": "ASR_PUSH_LED_000",
+ "detail": {
+ "fr": "Affichage de la touche tactile de la fonction antipatinnage des roues (ASR+)",
+ "en": "Display Touch button \"Traction Control\""
+ },
+ "pos": "04",
+ "mask": "01",
+ "maskBinary": "00000001"
+ }
+ ]
+ },
+ "211E": {
+ "name": "Telecoding_Fct_ADML",
+ "params": [
+ {
+ "name": "DMC",
+ "extra_name": "DAT_DG_ADML_CFG_000",
+ "detail": {
+ "fr": "Configuration ADML (Clé main libres)",
+ "en": "ADML configuration (Hands-free key)"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ }
+ ]
+ },
+ "212C": {
+ "name": "Telecoding_Fct_ION",
+ "params": [
+ {
+ "name": "E83",
+ "extra_name": "CLIM_IONISOR_CFGS_000",
+ "detail": {
+ "fr": "Fonction Ioniseur",
+ "en": "Ionisor function"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ },
+ {
+ "name": "E84",
+ "extra_name": "FRAGRANCE_CFG_000",
+ "detail": {
+ "fr": "Parfum ambiance",
+ "en": "Ambiance Perfume"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "E85",
+ "extra_name": "CLIM_STATUSLINE_000",
+ "detail": {
+ "fr": "Menu Climatisation",
+ "en": "Air Conditioning Menu"
+ },
+ "pos": "04",
+ "mask": "20",
+ "maskBinary": "00100000"
+ }
+ ]
+ },
+ "212D": {
+ "name": "Telecoding_Fct_PPS",
+ "params": [
+ {
+ "name": "EBP",
+ "extra_name": "DYNAMIC_MODE_000",
+ "detail": {
+ "fr": "Mode AUTO Dynamique pour la climatisation",
+ "en": "AUTO Dynamic mode for air conditioning"
+ },
+ "pos": "04",
+ "mask": "10",
+ "maskBinary": "00010000"
+ },
+ {
+ "name": "EBQ",
+ "extra_name": "MASSAGING_SEAT_CFG_000",
+ "detail": {
+ "fr": "Fonction siège massant",
+ "en": "Fonction siège massant"
+ },
+ "pos": "04",
+ "mask": "20",
+ "maskBinary": "00100000"
+ },
+ {
+ "name": "EBR",
+ "extra_name": "PPS_MODE_CFG_000",
+ "detail": {
+ "fr": "Configuration Mode AUTO pour la climatisation",
+ "en": "AUTO mode configuration for air conditioning"
+ },
+ "pos": "04",
+ "mask": "C0",
+ "maskBinary": "11000000"
+ }
+ ]
+ },
+ "212E": {
+ "name": "Telecoding_Fct_IDVR",
+ "params": [
+ {
+ "name": "ECG",
+ "extra_name": "OPTION_IDVR_000",
+ "detail": {
+ "fr": "Fonction d'enregistrement vidéo",
+ "en": "Video recording function"
+ },
+ "pos": "04",
+ "mask": "80",
+ "maskBinary": "10000000"
+ }
+ ]
+ },
+ "212F": {
+ "name": "Telecoding_Fct_AUDIO2",
+ "params": [
+ {
+ "name": "AWG",
+ "extra_name": "ENT_AUDIO_000",
+ "detail": {
+ "fr": "Entrée audio auxiliaire (AUX)",
+ "en": "Auxiliary audio input (AUX)"
+ },
+ "pos": "04",
+ "mask": "40",
+ "maskBinary": "01000000"
+ },
+ {
+ "name": "ED3",
+ "extra_name": "MOOD_GRID_000",
+ "detail": {
+ "fr": "MOOD GRIDFEATURE",
+ "en": "MOOD GRIDFEATURE"
+ },
+ "pos": "04",
+ "mask": "10",
+ "maskBinary": "00010000"
+ },
+ {
+ "name": "EGQ",
+ "extra_name": "AUDIO_PRESET_LIVE_000",
+ "detail": {
+ "fr": "Configuration Audio",
+ "en": "Audio Configuration"
+ },
+ "pos": "04",
+ "mask": "08",
+ "maskBinary": "00001000"
+ }
+ ]
+ }
+ }
+ }
+} \ No newline at end of file