Vom Fachmann für dein Motorrad
Bremslichtschalter Mikro Brembo PSC16 mit Kabel Ducati Monster SS 748 916 996 998
Ducati 748 916 996 998
Ducati ST3 ST4
Ducati SS i.e. 750 800 900 1000
Ducati Monster 1000, S2R 1000, S4R S2R 1000, Monster 900 i.e.
Ducati Multistrada 1000 / 1100
22,90€
Nur noch 3 vorrätig
- Hersteller: Brembo
- Artikelnummer: 10441821
- Produktart: Bremslichtschalter (Mikroschalter) mit Kabel
- Farbe: Schwarz
- Material: Kunststoff/Metall (laut Herstellerangabe)
- Einbauort: Hauptbremszylinder (Brembo PSC16)
- Kabellänge: ca. 30 cm (je nach Ausführung abweichend möglich)
- Kompatibilität: Ducati Monster, SS, 748, 916, 996, 998 mit Brembo PSC16 Hauptbremszylinder
Der Bremslichtschalter Mikro von Brembo ist ein elektrischer Schalter mit Anschlusskabel zur Montage am Hauptbremszylinder PSC16. Er dient der zuverlässigen Aktivierung des Bremslichts bei Betätigung des Handbremshebels und ist speziell für verschiedene Ducati Modelle ausgelegt.
Vorteile auf einen Blick
Der Mikroschalter bietet eine zuverlässige Lösung für die Bremslichtansteuerung an Motorrädern mit Brembo PSC16 Hauptbremszylindern.
- Zuverlässige Schaltfunktion für das Bremslicht
- Einfache Montage am vorgesehenen Anschluss des Hauptbremszylinders
- Langlebige Ausführung durch hochwertige Materialien
- Kabellänge passend für viele Ducati Modelle ab Werk
Technische Daten
Die wichtigsten Merkmale im Überblick:
- Mikroschalter-Ausführung für hydraulische Bremssysteme vorne
- Kabellänge ca. 30 cm (je nach Ausführung abweichend möglich)
- Anschluss über zwei Kabeladern mit offenen Enden oder Stecker (modellabhängig)
- Befestigung direkt am Brembo PSC16 Hauptbremszylinder vorgesehen
- Kompakte Bauform für unauffällige Integration am Lenkerbereich
Einsatzbereiche
Typischerweise wird dieser Bremslichtschalter bei Motorrädern eingesetzt, die mit einem Brembo PSC16 Hauptbremszylinder ausgestattet sind. Besonders geeignet ist er für Ducati Modelle wie Monster, SS, sowie die Baureihen 748, 916, 996 und 998. Die Zielgruppe umfasst Motorradbesitzende, Werkstätten und Fachbetriebe im Bereich Wartung und Reparatur.
Lieferumfang
- Brembo Mikroschalter mit Anschlusskabel für PSC16 Hauptbremszylinder
- Kabelenden offen oder mit Stecker (je nach Ausführung)
- Montagehinweise nicht enthalten; Einbau sollte gemäß Fahrzeugherstellerangaben erfolgen.
FAQ
Ist der Schalter passend für alle Ducati Modelle?
Er ist speziell auf Modelle mit Brembo PSC16 Hauptbremszylinder ausgelegt; Kompatibilität bitte anhand der Fahrgestellnummer oder Teileliste prüfen.
Muss der Einbau von Fachpersonal erfolgen?
Einbau wird durch qualifiziertes Personal empfohlen, um Funktion und Sicherheit zu gewährleisten.
Sind Adapter oder weiteres Zubehör erforderlich?
In der Regel nicht; je nach Modell kann jedoch ein passender Stecker oder Adapter notwendig sein.
Lässt sich der Schalter auch an anderen Motorrädern verwenden?
Die Verwendung an anderen Modellen ist möglich, sofern ein kompatibler Brembo PSC16 Hauptbremszylinder verbaut ist.
Muss das System nach dem Einbau entlüftet werden?
Der Austausch des Schalters erfordert in der Regel kein Entlüften des Bremssystems.
Alle Angaben ohne Gewähr.
Ducati 748 916 996 998
Ducati ST3 ST4
Ducati SS i.e. 750 800 900 1000
Ducati Monster 1000, S2R 1000, S4R S2R 1000, Monster 900 i.e.
Ducati Multistrada 1000 / 1100
Via Brembo 14
24035 Curno
Italien
acquisti@brembo.it
Via Stezzano 87
24126 Bergamo
Italien
acquisti@brembo.it
https://www.brembo.com/en/company/contacts
Du musst angemeldet sein, um eine Bewertung abgeben zu können.
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€





Bewertungen
Es gibt noch keine Bewertungen.