Produkteigenschaften:Licht an - für deinen Kompaktschleifer.Das Festool Lichtmodul erweitert deine Kompaktschleifer um ein entscheidendes Detail: perfekte Sicht.Durch die gezielte Ausleuchtung erkennst du Unebenheiten sofort - für präzisere Ergebnisse ohne Nacharbeit.Mit zwei Leuchtstufen passt du die Helligkeit schnell an deine Arbeitssituation an und vermeidest Blendung.Der automatische Start über Vibrationserkennung sorgt dafür, dass das Licht genau dann aktiv ist, wenn du es brauchst.Werkzeuglos anstecken und loslegen - arbeite jetzt mit maximaler Kontrolle für perfekte Oberflächen.Licht an: Am Lichtmodul können zwei Lichtmodi eingestellt werden: Volle Beleuchtung oder gedimmtes LichtEinfache Handhabung: Das Lichtmodul lässt sich ganz einfach an deinen Kompaktschleifer ansteckenFür alle Kompaktschleifer: Passend für ETS, RTS, DTS inklusive aller Akku-KompaktschleiferEinfach montiert: Werkzeugloses Anstecken - für maximale FlexibilitätLange Laufzeit: Bis zu 2,5 Stunden Dauerbetrieb bei maximaler Helligkeit, aufladbar per USB-C® in nur 80 MinutenAutomatischer Start: Dank Vibrationserkennung erfolgt das Ein- und Ausschalten des Lichtmoduls an deiner Schleifmaschine automatischGezielte Ausleuchtung deiner Oberfläche zur Erkennung von UnebenheitenKontrolliertes Schleifen im Detail- und KantenbereichHervorragende Arbeitsergebnisse auf der Baustelle und in der WerkstattTechnische Daten:Lichtquelle COB LED (60 LEDs)Lichtstrom (Stufe 1/2) 50 / 150 lmFarbtemperatur 5000 KFarbwiedergabe (CRI) >80 RaInterner Akku LiPo 3,7V / 1300 maHLeuchtdauer (interner Akku) 1./2. Stufe 250 / 150 minLadedauer 80 minLadestrom 1000 mA©Ladespannung 5.0 VLadeanschluss USB-C®Gehäuse-Schutzklasse IP 54Zulässiger Betriebstemperaturbereich -10 - 45 °CProduktgewicht ohne Zubehör 0.13 kgLieferumfang:1x Festool Lichtmodul LM-DTS für Kompaktschleifer
- Hersteller
- Festool GmbH
-
Wertstr. 20,
70327 Wendlingen am Neckar,
Deutschland
Festool Lichtmodul LM-DTS für Kompaktschleifer
- Artikel-Nr.: 578708
- EAN: 4014549462072
- Hersteller: FESTOOL

Nicht lagernd
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", "592f910ace5c837f3acbe22ea52daf0a");
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", "592f910ace5c837f3acbe22ea52daf0a");
}

- Versandkostenfreie Lieferung in DE ab 100€
- Kostenloser Rückversand
$(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
});