Vom Fachmann für dein Motorrad
Lambdasonde für Ducati Hypermotard 950 848 1098 ST3 Monster 620 695 800 1000 S4R Multistrada 620 950 1000 1100
Ducati Hypermotard 950 1100
Ducati 848 1098 1198
Ducati Streetfighter 848 1098
Ducati ST3
Ducati SC 1000 GT 1000
Ducati Multistrada 620 1000 1100 950 V2
Ducati Monster S4R 996 998 / S2R 800 1000
69,90€
Nur noch 4 vorrätig
- Hersteller: DucorDie
- Artikelnummer: 55211111A-Z
- Produktart: Lambdasonde (Sauerstoffsensor)
- Farbe: Schwarz/Silber (je nach Ausführung)
- Einbauort: Abgasanlage
- Material: Metall/Kunststoff-Verbund
- Kompatibilität: Ducati Hypermotard 950, 848, 1098, ST3, Monster 620, 695, 800, 1000, S4R, Multistrada 620, 950, 1000, 1100 (modellabhängig)
Die Lambdasonde von DucorDie ist ein elektronisches Bauteil zur Messung des Sauerstoffgehalts im Abgasstrang. Sie wird in verschiedenen Ducati-Modellen eingesetzt und unterstützt die Motorsteuerung bei der optimalen Gemischaufbereitung.
Vorteile auf einen Blick
Diese Lambdasonde bietet eine zuverlässige Funktion für zahlreiche Ducati-Modelle.
- Zuverlässige Erfassung des Sauerstoffgehalts im Abgas
- Sorgt für optimale Motorleistung und Emissionswerte
- Einfache Plug-&-Play-Montage an kompatiblen Modellen
- Langlebige Bauweise für den Einsatz im Motorradbereich
Technische Daten
Kernmerkmale der Lambdasonde:
- Betriebsspannung typischerweise ca. 12 V (fahrzeugspezifisch)
- Sensortyp: Sprungsonde (Zirkonoxid-Prinzip)
- Kabellänge und Steckerform modellabhängig
- Betriebstemperaturbereich bis ca. 900 °C am Sensorkopf möglich
- Ansprechzeit meist unter einer Sekunde (laut Herstellerangaben)
Einsatzbereiche
Geeignet für den Einsatz in Motorrädern der genannten Ducati-Baureihen. Die Lambdasonde richtet sich an Werkstätten, Fachbetriebe sowie technisch versierte Privatpersonen mit Erfahrung im Bereich Motorradwartung und -reparatur.
Lieferumfang
- 1x Lambdasonde passend für die genannten Ducati-Modelle (modellabhängig)
- Anschlusskabel mit fahrzeugspezifischem Stecker (je nach Ausführung)
- Hinweis: Die genaue Ausführung kann je nach Modelljahr und Fahrzeugvariante abweichen.
FAQ
Ist die Lambdasonde mit allen genannten Ducati-Modellen kompatibel?
Die Kompatibilität hängt vom jeweiligen Modelljahr und der Ausführung ab. Bitte vor dem Einbau die Teilenummern vergleichen.
Muss die Sonde nach dem Einbau angelernt werden?
In den meisten Fällen ist keine spezielle Anlernung erforderlich; Details können jedoch je nach Modell variieren.
Können Verschleiß oder Defekte auftreten?
Wie bei allen Sensoren kann es durch Alterung oder äußere Einflüsse zu Funktionsbeeinträchtigungen kommen.
Lässt sich die Sonde selbst austauschen?
Mit technischem Grundwissen und geeignetem Werkzeug ist ein Austausch in Eigenregie möglich.
Bietet das Produkt eine Garantie?
Garantiebedingungen sind herstellerabhängig und können je nach Anbieter variieren.
Alle Angaben ohne Gewähr.
Ducati Hypermotard 950 1100
Ducati 848 1098 1198
Ducati Streetfighter 848 1098
Ducati ST3
Ducati SC 1000 GT 1000
Ducati Multistrada 620 1000 1100 950 V2
Ducati Monster S4R 996 998 / S2R 800 1000
Walzwerkstrasse 89
16244 Schorfheide
Brandenburg Deutschland
info@used-italian-parts.de
Walzwerkstraße 89
16244 Schorfheide
Brandenburg Deutschland
info@used-italian-parts.de
Verwandte Produkte

<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Leerlaufschalter Ducati Monster SS i.e. 750 900, 748, 996, ST4, ST2
Hersteller: Ducati Artikelnummer: 53910072A Produktart: Leerlaufschalter (Neutral Switch) Farbe: Schwarz/Silber (je nach Ausführung) Material: Metall/Kunststoff…
68,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Luftdrucksensor Ducati 851 888 748 916 996 / Moto Guzzi 1000 / 1100
Hersteller: DuBiPa Artikelnummer: 55240021A-Z Produktart: Luftdrucksensor (MAP-Sensor) Farbe: Schwarz Material: Kunststoff/Elektronik Einbauort: Ansaugtrakt / Motorsteuerung…
59,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Tanksensor Ducati Monster 821 1200 Supersport 937 2017 – 2021
Ducati Monster 821 2017 - 2021 Ducati Monster 1200 2017 - 2021 Ducati Supersport 937…
94,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Lambdasonde für Ducati Panigale V2 V4 Streetfighter V2 V4 Multistrada V4 Diavel V4 Supersport 950 Scrambler Supermono
Ducati Panigale V2 V4 -alle- Ducati Streetfighter V2 V4 -alle- Ducati Multistrada V2 V4 -alle- Ducati Diavel V4-…
79,00€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>

Leerlaufschalter Ducati Monster SS i.e. 750 900, 748, 996, ST4, ST2
Hersteller: Ducati Artikelnummer: 53910072A Produktart: Leerlaufschalter (Neutral Switch) Farbe: Schwarz/Silber (je nach Ausführung) Material: Metall/Kunststoff...
68,90€

Luftdrucksensor Ducati 851 888 748 916 996 / Moto Guzzi 1000 / 1100
Hersteller: DuBiPa Artikelnummer: 55240021A-Z Produktart: Luftdrucksensor (MAP-Sensor) Farbe: Schwarz Material: Kunststoff/Elektronik Einbauort: Ansaugtrakt / Motorsteuerung...
59,90€

Tanksensor Ducati Monster 821 1200 Supersport 937 2017 – 2021
Ducati Monster 821 2017 - 2021 Ducati Monster 1200 2017 - 2021 Ducati Supersport 937...
94,90€

Lambdasonde für Ducati Panigale V2 V4 Streetfighter V2 V4 Multistrada V4 Diavel V4 Supersport 950 Scrambler Supermono
Ducati Panigale V2 V4 -alle- Ducati Streetfighter V2 V4 -alle- Ducati Multistrada V2 V4 -alle- Ducati Diavel V4-...
79,00€




