iRobot Roomba 4210 Discovery Vacuuming Robot, White
|
| List Price: | $279.99 |
| Price: | $279.00 |
Availability: Usually ships in 1-2 business days
Ships from and sold by J&R Music and Computer World
Average customer review: ![]()
Product Description
Push a button???not a vacuum cleaner???to get your house sparkling clean. The Roomba Discovery Robotic Vacuum senses, finds and eliminates dirt while automatically adjusting to any floor surface including carpet, wood, tile and linoleum. The round-shape vacuum goes where others can’t like corners and edges then returns to its self-charging home base. The remote-control Roomba also features a bagless bin for mess-free emptying and has received the #1 CPR rating worldwide. Comes with wall mount.
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: #19017 in Kitchen & Housewares
- Color: Ice Palace
- Brand: iRobot
- Model: 4210
- Released on: 2004-09-15
- Number of items: 1
- Dimensions: 5.20″ h x 16.80″ w x 21.10″ l, 12.00 pounds
Features
- Robotic floorvac with dirt detection and convenient infra-red cliff sensors
- Auto adjusts to any floor surface; 2-hour continuous cleaning; easy-to-empty debris bin
- Edge-cleaning sidebrush; stasis sensor; virtual wall for confining to designated area
- Rechargeable APS battery, 3-hour charger, 2 virtual walls, 2 air filters, and remote control included
- Measures 16-3/4 by 21 by 5 inches; 1-year warranty
Editorial Reviews
Amazon.com Product Description
Enjoy effortlessly clean floors with this vacuuming robot. The unit senses, finds, and eliminates dirt while automatically adjusting to any floor surface including carpet, wood, tile, and linoleum. The round-shape vacuum goes where others can’t like corners and edges, then returns to its self-charging Home Base where it automatically docks and recharges between cleaning cycles. In addition to active dirt detect, a stair-avoidance system, surface transitioning, and a bagless debris bin, the unit offers three cleaning modes (clean, spot, and max) and a standard, infrared remote control. The vacuum also provides an Advance Power Supply (APS) battery, which enables up to 120 minutes of continuous cleaning time, and an APS fast charger that fully charges the Roomba in less than three hours. Two virtual-wall units, which use an infrared beam to create a barrier, come included for cleaning only where desired. Each virtual-wall unit requires two D batteries (sold separately). Other accessories include two Roomba filters, documentation, an owner’s guide, and a cleaning tool. The vacuuming robot measures 16-3/4 by 21 by 5 inches and carries a one-year warranty.
Customer Reviews
I threw it away![]()
Roomba worked for 6 months and I tried to get a response from the website without luck. When I finally got someone to respond they said that the software was bad and I had to buy a new one and they would give me a discount. Warranty sucks. Customer service treats you like an idiot. Buy an upright vacuum sweeper.$200 down the drain. They have no facility to fix ones that do not work. You have to throw it out and buy another.
Mixed feelings about Roomba after a year![]()
After using my Roomba a year, I’ve decided I’ll probably not buy another when this one gives out. The main reason I bought a Roomba was to save time and concluded Roomba doesn’t help much in that department. The time it takes me to set up the room (getting cords and junk out of the way, etc.) plus the time it takes to clean the Roomba out is more than how long it would take me to just whip out the vacuum and kamikaze the floors myself.
We’ve got 2 dogs (short hair but prodigious shedders nonetheless) and 2 teenaged girls (long hair, also shedders) and the hair gets wound up in the brushes. After every run, I have to take the Roomba apart, cut the wound-up hair off the brushes, comb out the rest of the hair, and so on. This is a 15-minute operation by itself.
Roomba also does not match the performance a decent rug-beating vacuum does on carpet.
If you have lots of hard flooring and don’t have hair issues, Roomba is for you.
Stay away! Poor product, worse customer service, required acessories routinely out of stock.![]()
Stay away. Stay far away from this company and their products. Poor quality product, abysmally pathetic customer service after you’re already on the hook for $250+, no follow-up with the customer and required accessories are routinely out of stock. It’s not worth it even if the thing did occasionally clean a floor now and then.
A case in point:
My wife purchased a Roomba Discovery as a gift for me. Unfortunately, this model’s delicate power supply was initially put on the market with no sort of internal surge suppressor. As a result, a blip in our electricity 9 months later fried the power supply. An iRobot rep dutifully offered to send me a new & improved power supply with surge suppression. This took over 2 months, as they were out of stock due to the aforementioned manufacturing glitch.
12 months and 6 days from the date of purchase, the power supply arrived. We found that the power surge 2 months ago apparently fried the robot itself as well as the power supply. Due to iRobot’s incompetence in design and the subsequent lack of in-stock power supplies, we found ourselves outside of iRobot’s year warranty period. iRobot refused to replace the robot unless I paid $99 plus shipping for the repair since it was 6 days out of warranty! No amount of discussion would swerve the customer service drone away from charging me to have a repair done on a product that fried while it was still in warranty. He even admitted that he had the whole record (including that they were out of stock on replacement power supplies for close to 3 months) on file. “There’s nothing I can do, sir” I was told. In subsequent calls I was told that if I had filed a particular form that was never mentioned by any customer service people, the $99 fee would have been waived, but that it was too late to do anything about it now (like issue a refund or give me, say, $99 worth of accessories.) Nope, no can do, sir. We apologize for the inconvenience but we’re still keeping your cash.
iRobot then sent me 2 dud “remanufactured” Discovery Roombas before we found one that would actually charge up. (Do they even turn them on to test before they ship them out again?) The “working” one they finally sent would not dock on the self-charging dock from day one. But the same poor customer service that got this nightmare started eventually worked in my favor. Due to what I assume to be a computer glitch (imagine!) a second Roomba showed up on my doorstep a month later via Fed Ex. When the battery gave out after 3 sessions, I was then forced to purchase a new battery. Pity that - iRobot seems to have forgotten to manufacture batteries recently.
For the past 4 months the iRobot website has said that Roomba batteries are out of stock and due back “within 4 to 6 weeks.” They say not to use non-iRobot brand batteries or they’ll void your warranty. What are you meant to do when the only company that sells “approved” batteries won’t keep said batteries in stock? Go to eBay like everybody else for after-market “Made in China” knockoffs, I guess.
What a hunk of junk. Wait - what HUNKS of junk. I forgot I now have TWO dead Roombas.









