Produktbeschreibung:Der Einhell PXC+ 18 V 3,0 Ah Akku im Twin-Pack gehört zum multifunktionalen und grenzenlos untereinander kombinierbaren Akku-System Power X-Change von Einhell.Die universell einsetzbaren Power X-Change-Akkus versorgen alle Akku-Geräte der gesamten Produktfamilie im Garten- und Werkstattbereich mit Kraft und Ausdauer.Die Einhell PLUS-Technologie nutzt Lithium-Ionen-Zellen des Typs 21700, um bei nur fünf statt zehn Zellen die gleiche Leistung und Laufzeit wie der 3,0 Ah Basis-PXC-Akku zu erreichen.So entstehen 13 % kompaktere und 10 % leichtere Akkus für effizientes Arbeiten.Das prozessgesteuerte, aktive Batteriemanagementsystem ABS überwacht mithilfe des eingesetzten Mikroprozessors stetig die Parameter des Akkus.Dadurch sorgt es für höchste Sicherheit, optimale Geräteperformance, maximale Laufzeit und maximale Lebensdauer.Der aktuelle Ladezustand kann durch eine 3-stufige LED-Anzeige kontrolliert werden.Das Gehäuse widersteht aufgrund der Bauweise Staub, Korrosion und mechanischen Einflüssen.Die Gummierung verleiht dem Akku hohen Stoßschutz und eine gute Griffigkeit.Mithilfe der Griffmulde kann dieser wieder leicht aus allen Geräten entfernt werden.Der Lieferumfang enthält zwei 3,0 Ah Power X-Change PLUS Akkus.Ein Ladegerät ist separat erhältlich.Technische Daten:Aktives Batteriemanagement System: JaAnzahl Akkus: 2 pcsChemie Akku: Lithium-Ionen (Li-Ion)Griffmulde: JaKapazität Akku: 3 AhLadezustandsanzeige: JaLeistung: 900 WOberflächenbeschaffenheit Gehäuse: SoftgripPower X-Change: JaPower X-Change Plus: JaProduktgewicht: 1.18 KgSpannung Akku: 18 VStaubgeschützt: NeinTwinpack-Technologie: JaLieferumfang:2x Einhell Akku 18V 3Ah PXC Plus
Einhell Akku 18V 3Ah PXC Plus Twinpack (2 Stück)
69,99 €
UVP 90,95 €
-23%
inkl. MwSt., ggf. zzgl. Versandkosten
Inhalt
1 Stück
Auf Lager
const observer = new MutationObserver(() => {
const el = document.getElementById("delivery-date-template");
if (el) {
el.innerHTML = el.innerHTML.replace(
"Lieferung:",
"Lieferung:"
);
observer.disconnect();
clearTimeout(timeoutId);
}
});
observer.observe(document.body, { childList: true, subtree: true });
const timeoutId = setTimeout(() => observer.disconnect(), 2000);
DHL Paket
if(!document.getElementById('paypal-smart-payment-script'))
{
var script = document.createElement("script");
script.type = "module";
script.id = "paypal-smart-payment-script";
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "a30bb5b098e20c213d632142ad3856dc");
document.body.appendChild(script);
} else {
var script = document.getElementById('paypal-smart-payment-script');
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "a30bb5b098e20c213d632142ad3856dc");
}
Ähnliche Artikel
$(document).ready(function() {
setTimeout(function () {
if (
window.innerWidth < 1200 &&
$('#m1').length &&
$('#mM').length &&
$('#m1').is(':empty')
) {
$('#mM').appendTo('#m1');
}
}, 1000);
$( window ).resize(function() {
if ($(window).outerWidth() < 1200 ) {
$('#mM').appendTo('#m1');
} else {
$('#mM').appendTo('#m2');
}
});
});
$(function () {
const $links = $('.anchors a');
const nav = document.querySelector('.anchors');
function updateActiveLink() {
const scrollTop = $(document).scrollTop();
$links.each(function (i, link) {
const targetId = $(link).attr('href');
const $target = $(targetId);
if (!$target.length) return;
const top = $target.offset().top;
let bottom;
if (i < $links.length - 1) {
const nextLinkHref = $($links[i + 1]).attr('href');
const $nextTarget = $(nextLinkHref);
bottom = $nextTarget.length ? $nextTarget.offset().top : $(document).height();
} else {
bottom = $(document).height();
}
if (scrollTop >= top - 120 && scrollTop < bottom - 120) {
$links.removeClass('active');
$(link).addClass('active');
scrollNavToLink(link);
return false; // break .each()
}
});
}
function scrollNavToLink(link) {
if (!nav) return;
const linkLeft = link.offsetLeft;
const linkWidth = link.offsetWidth;
const navWidth = nav.offsetWidth;
const scrollTo = linkLeft - (navWidth / 2) + (linkWidth / 2);
nav.scrollTo({ left: scrollTo, behavior: 'smooth' });
}
let scrollTimer;
$(document).on('scroll', function () {
updateActiveLink(); // run immediately
clearTimeout(scrollTimer);
scrollTimer = setTimeout(updateActiveLink, 100); // trailing update
});
updateActiveLink(); // on load
});



























