Vom Fachmann für dein Motorrad
Bremslichtschalter Mikro ohne Kabel – Moto Guzzi V11, California 1100, Daytona, Centauro, Nevada…
17,90€
Nur noch 9 vorrätig
- Hersteller: Brembo
- Artikelnummer: 10441812
- Produktart: Bremslichtschalter (Mikroschalter, ohne Kabel)
- Passend für verschiedene Moto Guzzi Modelle, u. a. V11, California 1100, Daytona, Centauro, Nevada
- Montageposition: In der Regel am Handbremshebel oder Fußbremshebel
- Funktion: Schaltet das Bremslicht beim Betätigen des Bremshebels
- Bauform: Kompakter Mikroschalter ohne Anschlusskabel
Der Bremslichtschalter Mikro ohne Kabel ist ein kompaktes Ersatzteil für verschiedene Moto Guzzi Motorräder. Er dient zur zuverlässigen Aktivierung des Bremslichts beim Betätigen des Bremshebels und wird von Brembo gefertigt.
Vorteile auf einen Blick
Der Mikroschalter bietet eine zuverlässige Lösung für die Bremslichtsteuerung an zahlreichen Moto Guzzi Modellen.
- Kompakte Bauform für einfache Integration
- Zuverlässige Schaltfunktion für erhöhte Sicherheit im Straßenverkehr
- Langlebige Ausführung durch hochwertige Materialien
- Einfache Nachrüstung oder Austausch möglich
Technische Daten
Kernmerkmale des Mikroschalters im Überblick:
- Mikroschalter-Ausführung ohne Anschlusskabel
- Kurzweg-Betätigung (typisch für Hand- oder Fußbremshebel)
- Kompakte Maße zur einfachen Montage (genaue Abmessungen modellabhängig)
- Anschlusskontakte zum individuellen Verkabeln vorhanden
- Geeignet für Gleichstrom-Bremslichtkreise gängiger Motorräder
Einsatzbereiche
Der Bremslichtschalter Mikro wird typischerweise bei Wartung und Reparatur von Motorrädern eingesetzt. Er eignet sich besonders für:
- Moto Guzzi Modelle wie V11, California 1100, Daytona, Centauro, Nevada (modellabhängig)
- Zweiradwerkstätten und Fachbetriebe im Bereich Motorradtechnik
- Privatanwendende mit technischem Know-how bei der Instandhaltung von Motorrädern
Lieferumfang
- 1x Brembo Mikroschalter (Bremslichtschalter) ohne Kabelanschluss
- Anschlusskabel nicht enthalten – bitte separat bestellen oder vorhandene Verkabelung verwenden.
- Hinweis: Die Kompatibilität kann je nach Modelljahr und Ausführung variieren.
FAQ
Ist der Schalter direkt passend für mein Moto Guzzi Modell?
Die Passgenauigkeit hängt vom jeweiligen Modell und Baujahr ab. Bitte vorab die Einbausituation prüfen.
Muss das Anschlusskabel separat bestellt werden?
Ja, dieser Mikroschalter wird ohne Kabel geliefert. Das passende Kabel ist separat erhältlich oder kann ggf. wiederverwendet werden.
Eignet sich der Schalter auch für andere Motorradmarken?
Die Ausführung ist primär auf bestimmte Moto Guzzi Modelle abgestimmt. Für andere Marken bitte die technischen Anforderungen vergleichen.
Lässt sich der Schalter selbst montieren?
Mit technischem Grundwissen ist die Montage in Eigenregie möglich; bei Unsicherheiten empfiehlt sich die Installation durch Fachpersonal.
Sind Wartungsarbeiten am Schalter erforderlich?
Der Mikroschalter ist wartungsfrei; regelmäßige Funktionsprüfung im Rahmen der Fahrzeuginspektion wird empfohlen.
Alle Angaben ohne Gewähr.
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; } ?>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; } } } ?>
<?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 Multistrada 1200 Diavel 1200 Panigale 899 959 1199 1299
Ducati Panigale 899 959 1199 1299 -alle- Ducati Multistrada 1200 - bis 2014- Ducati Diavel1200 - bis 2017…
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; } } } ?>

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€

Lambdasonde für Ducati Multistrada 1200 Diavel 1200 Panigale 899 959 1199 1299
Ducati Panigale 899 959 1199 1299 -alle- Ducati Multistrada 1200 - bis 2014- Ducati Diavel1200 - bis 2017...
79,00€





Bewertungen
Es gibt noch keine Bewertungen.