Vom Fachmann für dein Motorrad
Beeline Moto II Gunmetal Grey Edition Motorrad Navigationssystem
229,00€
Nur noch 4 vorrätig
Beeline Moto II Gunmetal Grey– Das Smarte Navigationsgerät für Motorradfahrer
Beschreibung: Das Beeline Moto II ist ein kompaktes, stilvolles und extrem benutzerfreundliches Navigationsgerät, speziell für Motorradfahrer entwickelt. Mit seinem minimalistischen Design und der einfachen Bedienung bietet es eine nahtlose und präzise Navigation für jede Fahrt. Das Beeline Moto II ist die perfekte Kombination aus Funktionalität und Form, ideal für Abenteurer und Pendler gleichermaßen.
Hauptmerkmale:
-
Intuitive Navigation: Das Beeline Moto II bietet eine intuitive Benutzeroberfläche, die sich auf das Wesentliche konzentriert. Anstelle komplexer Karten zeigt das Gerät klare, leicht verständliche Pfeile, die den Fahrer sicher zum Ziel führen. Die kompakte Anzeige sorgt dafür, dass man sich auf die Straße konzentrieren kann.
-
Kompaktes und Robustes Design: Das Gehäuse ist aus stoßfestem Material gefertigt und bietet eine wasserdichte IP67-Zertifizierung. Damit ist das Beeline Moto II bestens gegen alle Wetterbedingungen gewappnet – sei es Regen, Staub oder extreme Temperaturen.
-
Lange Akkulaufzeit: Mit einer Akkulaufzeit von bis zu 30 Stunden hält das Beeline Moto II auch längere Touren problemlos durch. Die Akkulaufzeit hängt dabei von den Einstellungen und der Helligkeit des Displays ab.
-
Einfach zu Montieren: Die einfache Halterung lässt sich problemlos an allen Lenkern montieren. Das Gerät wird magnetisch befestigt, was das Anbringen und Entfernen zum Kinderspiel macht. So kann man es nach der Fahrt sicher verstauen.
-
Verbindung via Bluetooth: Das Beeline Moto II verbindet sich per Bluetooth mit der Beeline-App auf Ihrem Smartphone. Von dort aus können Routen geplant und direkt an das Gerät gesendet werden. Die App bietet auch die Möglichkeit, Fahrten zu speichern, zu teilen und neue Strecken zu entdecken.
-
Zwei Navigationsmodi:
- Routennavigation: Ideal für das Fahren in der Stadt oder auf unbekannten Straßen. Hierbei zeigt das Gerät die genaue Route zum Ziel.
- Kompassmodus: Perfekt für Abenteuerlustige, die abseits der ausgetretenen Pfade fahren möchten. Dieser Modus zeigt lediglich die Richtung zum Ziel, ohne eine festgelegte Route zu bestimmen.
-
Einfache Benutzeroberfläche: Mit nur zwei Tasten lässt sich das Beeline Moto II unkompliziert bedienen. Die einfache Menüführung ermöglicht eine schnelle Einstellung und Navigation während der Fahrt.
-
Anpassbares Display: Das E-Paper-Display sorgt für eine klare Ablesbarkeit bei allen Lichtverhältnissen, sei es bei strahlendem Sonnenschein oder in der Dunkelheit. Zudem kann die Helligkeit des Displays angepasst werden.
Technische Daten:
- Display: E-Paper-Technologie für beste Sichtbarkeit
- Akkulaufzeit: Bis zu 30 Stunden
- Wasserdicht: IP67-Zertifizierung
- Befestigung: Magnetisch, passend für alle Lenker
- Verbindung: Bluetooth zur Beeline-App (iOS & Android)
- Navigation: Turn-by-Turn und Kompassmodus
Fazit: Das Beeline Moto II ist ein Muss für alle, die eine einfache, zuverlässige und minimalistische Navigationslösung für ihre Motorradfahrten suchen. Mit seiner langen Akkulaufzeit, der robusten Bauweise und der kinderleichten Bedienung ist es der ideale Begleiter für jede Fahrt – ob in der Stadt oder auf dem Land.
–> Video
Routenplanung und Import ebenfalls per Calimoto App möglich.
USB-C Laden, Akku mit 600mAh und über 10Std. Fahrzeit, iOS 13 / Android8.0 kompatibel, min. Anforderung Bluetooth4.0,36,8mm IPS TFT antireflektierender Bildschirm, Warnungs-LED, Gehäuseausführung in ASA-Kunststoff oder Aluminium, Feuchtigkeitsschutzklasse IP67, Ø53mm, Höhe20,5mm, Gewicht black:40g, Gewicht silver und metal:60g, Diebstahlschutz durch Drehschnellverschluss am Gerätehalter, ein Halter im Lieferumfang enthalten.
Moto II Gunmetal Grey, Kunstoff-Gehäuse, schwarz
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; } ?>
Beeline Moto II Silver Edition Motorrad Navigationssystem schwarz #1
Beeline Moto II Silver – Das Smarte Navigationsgerät für Motorradfahrer Beschreibung: Das Beeline Moto II ist…
229,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; } ?>
Beeline Moto II Halteplatte mit Stromversorgung
Halteplatte mit Stromversorgungsmodul in schwarz für Beeline Moto II Geräte Original Beeline Zubehör Originalnummer: MNT3.0_PWR
54,99€
<?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; } ?>
Beeline Moto II AMPS Halterung
Halterung Beeline Moto II für AMPS-Halterungen Original Beeline Moto II Zubehör
22,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; } ?>
Beeline Moto II Halteplatte mit Gummiringen
Halteplatte mit Gummiringen für Beeline Moto II Geräte black silver und gunmetall Original Beeline Zubehör…
17,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; } } } ?>

Beeline Moto II Silver Edition Motorrad Navigationssystem schwarz #1
Beeline Moto II Silver – Das Smarte Navigationsgerät für Motorradfahrer Beschreibung: Das Beeline Moto II ist...
229,00€

Beeline Moto II Halteplatte mit Stromversorgung
Halteplatte mit Stromversorgungsmodul in schwarz für Beeline Moto II Geräte Original Beeline Zubehör Originalnummer: MNT3.0_PWR
54,99€

Beeline Moto II AMPS Halterung
Halterung Beeline Moto II für AMPS-Halterungen Original Beeline Moto II Zubehör
22,90€

Beeline Moto II Halteplatte mit Gummiringen
Halteplatte mit Gummiringen für Beeline Moto II Geräte black silver und gunmetall Original Beeline Zubehör...
17,90€