Caratteristiche del prodotto: Molto leggero e maneggevole, quindi perfetto per lavorare su pareti e soffitti Regolazione continua dell'angolo fino a 45 Regolazione della profondità di taglio secondo il principio della forbice Con LED luminoso L'aria di raffreddamento libera la superficie di taglioDati tecnici: Velocità minima 3.600 min-1 Capacità di taglio 0°/45° 51/35 mm Ø lama / foro 136/20 mm Tensione della batteria 18 V Capacità della batteria 5,0 Ah Dimensioni (LxLxH) mm 364x183x201 Peso 2,7 kg Livello di pressione sonora (LpA): 76 dB(A) Valore K del rumore: 3 dB(A) Vibrazione segatura legno: 2,5 m/s² Valore K di vibrazione: 1,5 m/s²Contenuto della fornitura: 1x sega circolare a batteria Makita DSS501RTJ 1x valigetta di trasporto MAKPAC misura 3 2x batteria da 18 Volt BL1850 con 5,0 Ah 1x cappuccio di protezione dei contatti 450128-8 1x caricabatterie DC18RC 195584-2 1x bocchetta di aspirazione 194415-2 1x chiave per perni 6-KT 5mm 783203-8 1x Recinzione 164095-8 1x Lama in metallo duro 136x20x16Z B-10643
Manufacturer Makita Werkzeug GmbH
Makita-Platz 1,
40885 Ratingen,
Deutschland www.makita.de Sega circolare a batteria Makita DSS501RTJ 18V 2x batterie 5,0 Ah + caricabatterie in set in Makpac Artikel-Nr.: DSS501RTJ EAN: 0088381690102 Hersteller: Makita
368,99 €
Ceres::Template.crossPriceRRP
-40%
inkl. MwSt., ggf. zzgl. Versandkosten
Ceres::Template.singleItemContent
1
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);
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", "it_IT");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "7fdd6fb4cb01d7bdc1974e6796afa614");
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", "it_IT");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "7fdd6fb4cb01d7bdc1974e6796afa614");
}
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
});