iRobot 1100 Dirt Dog Workshop Robot iRobot 1100 Dirt Dog Workshop Robot
iRobot 1100 Dirt Dog Workshop Robot
|
| List Price: | $149.99 |
| Price: | $129.00 & eligible for FREE Super Saver Shipping on orders over $25. Details |
Availability: Usually ships in 24 hours
Ships from and sold by Amazon.com
Average customer review: ![]()
Product Description
Deje que la limpieza la haga un robot. El Dirt Dog limpia suelos, alfombras, el garage, sótano, así como superficies industriales. Además, los cepillos de diseña especial giran casi 1000 veces por minuto, barriendo encima de la suciedad y escombros. Presione simplemente el botón de “limpiar” y el Dirt Dog barrera por abajo de los bancos de trabajo, los coches, y esos lugares difíciles de alcanzar, recogiendo tuercas, pernos, y suciedad. Gracias a su tecnología de sensores evita que la unidad caiga de escaleras u otras pendientes verticales. La unidad ofrece un compartimiento de gran tamaño, fácil de vaciar y limpiar, y su fuente de alimentación carga completamente por siete horas. Los accesorios incluyen una batería estándar, un cargador estándar, una herramienta de limpieza, y la guía del usuario. La Dirt Dog mide aproximadamente 13 por 13 por 4 pulgadas.
addHandlers();
function addHandlers() { if (goVariationSet == null || AJSEventHandler == null || VariationSetEvent == null) { return; }
goVariationSet.registerEvent(VariationSetEvent.DIMENSION_HOVER, new AJSEventHandler(null, notAvailableHover_handle)); goVariationSet.registerEvent(VariationSetEvent.DIMENSION_SELECTED, new AJSEventHandler(updateDimensionText_init, updateDimensionText_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updatePrice_init, updatePrice_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updateAvail_init, updateAvail_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(null, updateOfferId_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updateBuyButton_init, updateBuyButton_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updateImage_init, updateImage_handle));
var buybtn = document.getElementById('buybutton'); var form = document.buybox;
if (buybtn != null && form != null) { if (document.body.addEventListener) { buybtn.addEventListener('mouseover', buyButtonMouseover, false); buybtn.addEventListener('mouseout', buyButtonMouseout, false); form.addEventListener('submit', cartSubmit, false); } else { buybtn.attachEvent('onmouseover', buyButtonMouseover); buybtn.attachEvent('onmouseout', buyButtonMouseout); form.attachEvent('onsubmit', cartSubmit); } }
}
function updateDimensionText_init() { var spans = document.getElementsByTagName("span"); for (var i = 0; i < spans.length; i++) { if (spans[i].className == “dimensionSelectorLabel”) { spans[i].innerHTML = AJSStrings.get(”choose one”); } } }
function updateDimensionText_handle(event) { if (!event.type || event.type != VariationSetEvent.DIMENSION_SELECTED) return;
var dn = event.dimensionName; var element = document.getElementById(’dimensionSelectorLabel_’ + dn); if (element) { var value = event.dimensionValue; if (value == null) { value = AJSStrings.get(”choose one”); } element.innerHTML = value; } }
function notAvailableHover_handle(event) { if (!event.type || event.type != VariationSetEvent.DIMENSION_HOVER || goVariationSet == null) return;
var div = document.getElementById(’variationNotAvailable’); if (div == null) return;
var dn = event.dimensionName; var dv = event.dimensionValue;
if (dn == null && dv == null) { div.style.display = ‘none’; } else if (!goVariationSet.isDimensionValueAvailable(dn, dv)) { var dims = goVariationSet.getAllConstraints(); dims[dn] = dv; var out = AJSStrings.get(”Not available in”) + ‘<br\/>’; for (var d in dims) { out += AJSStrings.getFallback(d) + ‘: <span class=”notAvailHighlight”>’ + dims[d] + “<\/span><br\/>”; } var img = document.getElementById(’detailProductImage’); var width = (img == null) ? 180 : img.width + 10;
div.style.width = width; div.innerHTML = out; div.style.display = ‘block’; } }
function updatePrice_init() { var offerPrice = document.getElementById(’detailOfferPrice’); var listPrice = document.getElementById(’detailListPrice’); if (offerPrice == null) return;
this.defaultPrice = offerPrice.innerHTML; if (listPrice != null) { this.defaultListPrice = listPrice.innerHTML; } }
function updatePrice_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return;
var offerPrice = document.getElementById(’detailOfferPrice’); var listPrice = document.getElementById(’detailListPrice’); if (offerPrice == null) return;
var variation = event.variation; if (variation != null) { if (variation.attrs.Price) { offerPrice.innerHTML = variation.attrs.Price; } if (listPrice != null && variation.attrs.ListPrice && (variation.attrs.ListPriceAmount > variation.attrs.PriceAmount)) { listPrice.innerHTML = variation.attrs.ListPrice; } } else { offerPrice.innerHTML = this.defaultPrice; if (listPrice != null) { listPrice.innerHTML = this.defaultListPrice; } } }
function updateAvail_init() { var element = document.getElementById(’dimSelectAvailability’); if (element == null) return;
this.defaultAvailability = element.innerHTML; }
function updateAvail_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return;
var element = document.getElementById(’dimSelectAvailability’); if (element == null) return;
var variation = event.variation; if (variation != null) { var text = “”; if (variation.attrs.Availability) { text = variation.attrs.Availability; } if (variation.attrs.MerchantName) { if (text != “” && !text.match(/\.\s*$/)) { text += ‘.’; } text += ” ” + AJSStrings.get(’Ships from sold by’) + ” ” + variation.attrs.MerchantName; } element.innerHTML = text; } else if (this.defaultAvailability != null) { element.innerHTML = this.defaultAvailability; } }
function updateOfferId_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return;
var form = document.buybox; if (form == null || form.dynASIN == null || form.dynOfferId == null) return;
var variation = event.variation; if (variation != null && variation.attrs.OfferListingId != null && variation.attrs.Asin != null) { form.dynASIN.value = variation.attrs.Asin; form.dynOfferId.value = variation.attrs.OfferListingId; } else { form.dynASIN.value = ”; form.dynOfferId.value = ”; } }
function updateBuyButton_init() { var element = document.getElementById(’buybutton’); if (element == null) return; element.style.cursor = “not-allowed”; }
function updateBuyButton_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return; var element = document.getElementById(’buybutton’); if (element == null) return;
if (event.variation == null) { element.style.cursor = “not-allowed”; } else { element.style.cursor = “pointer”; } }
function buyButtonMouseover(event) { if (goVariationSet == null) return;
if (goVariationSet.selectedVariation == null) { var div = document.getElementById(’chooseVariationBFCartAdd’); if (div != null) { div.style.display = ‘block’; } } }
function buyButtonMouseout(event) { var target = (event.target) ? event.target : event.srcElement; var div = document.getElementById(’chooseVariationBFCartAdd’); if (div != null) { div.style.display = ‘none’; } }
function cartSubmit(event) { if (goVariationSet == null || goVariationSet.selectedVariation != null) { return true; } else { if (event.preventDefault) { event.preventDefault(); } return false; } }
function updateImage_init() { var img = document.getElementById(’detailProductImage’); if (img) { this.defaultImage = img.src; }
var link = document.getElementById(’imageViewerLink’); if (link) { this.defaultHref = link.href; // replace current asin with a generic url for subsitutions this.baseHref = link.href.replace(/\/images\/\w{10}/, “/images/%ASIN%”); } }
function updateImage_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return; var img = document.getElementById(’detailProductImage’); var link = document.getElementById(’imageViewerLink’); var variation = event.variation;
var imgsrc, href;
if (variation && variation.attrs.ImageURL) { imgsrc = variation.attrs.ImageURL; href = this.baseHref.replace(/%ASIN%/, variation.attrs.Asin); } else { imgsrc = this.defaultImage; href = this.defaultHref; }
if (img) img.src = imgsrc; if (link) link.href = href; }
Product Details
- Amazon Sales Rank: #436 in Kitchen & Housewares
- Color: Yellow
- Brand: iRobot
- Model: 110
- Released on: 2007-04-26
Features
- Cleaning machine for hard floors, shop carpets, or industrial-floor surfaces
- Simple one-button operation; high-speed, counter-rotating brushes
- Stair avoidance system; oversized dust bin; fully charges in 7 hours
- Standard battery and charger, cleaning tool, and owner’s guide included
- Measures approximately 13 by 13 by 4 inches; 1-year limited warranty
Editorial Reviews
Amazon.com Product Description
Leave the cleaning to a robot with this convenient machine. Its 14.4-volt rechargeable Ni-MH battery provides the power needed to clean hard floors, shop carpets, garage and basement areas, as well as industrial-floor surfaces. In addition, specially designed counter-rotating brushes spin almost 1,000 times per minute, sweeping up dirt and debris that cling to rough surfaces. Simply press the “clean” button and the unit sweeps under workbenches, cars, and other hard-to-reach places, picking up nuts, bolts, dirt, and more. For added convenience, “cliff” sensors keep it from falling down stairs or other vertical drops. The unit offers an oversized, bagless, easy-to-empty debris bin, and its power supply fully charges in seven hours. Accessories include a standard battery, a standard charger, a cleaning tool, and an owner’s guide. The cleaning machine measures approximately 13 by 13 by 4 inches and carries a one-year limited warranty.
What’s in the box:
- iRobot Dirt Dog Workshop Robot
- Standard battery–non APS
- Standard charger
- Cleaning tool
- Owner’s guide
Customer Reviews
A great little helper![]()
I have owned my Dirt Dog for a couple of months now, and just thought that I would share a quick review.
This thing cleans very well. All it does is brush the floor, but I have a great dane, miniature schnauzer, and cocker spaniel, so I need all the help I can get.
My floor by the back door is tile, and I let this guy brush it daily to pick up the grass the dogs track in. It does this job wonderfully. I also use it to sweep up the kitchen and dining room tile, and it picks up whatever mess is there better than I can do sweeping. The biggest help this little guy provides is cleaning my extra bathroom. My roommate is asian, and she has long, thick black hair, and it gathers in the corners of the bathroom quick. This guy has no problem running through there and picking it up for me. It also does what it is supposed to do, clean the garage, very well. I have a couch in my garage and I was shocked at how much stuff was under it when this guy was through. It does its job VERY well.
The only problem I have is that it is loud. I mean, louder than my Dyson, and it doesn’t even have a vacuum. Maybe mine is the exception, but I can’t even turn it on while I’m trying to sleep. I just use it while I’m not watching tv or anything, or when I run to the store. But it’s still something to think about.
great product![]()
The dirt dog does what it say cleaning my garage and my veranda.
Set it and forget it.
Amazing!![]()
My dad (who is in love with his regular Roomba) bought me this as a gift, and it is AMAZING. I have three cats and a rabbit, so my den needs a lot of heavy-duty vacuuming. All of them shed like crazy and use litter boxes, and the rabbit likes to throw his food and hay all over the floor. (And trust me, hay is one of the most difficult things to vacuum off of a rug.) The Dirt Dog cleans it all up with no problem whatsoever. I have used it on wood, tile, rug, and carpet now, and it works great on all surfaces. I would reccommend getting some of the lighthouses/walls though.
Tags: Dirt Dog, iRobot, Robot, Workshop
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.







Leave a Reply