Breezome 8 Pint Dehumidifier,Portable Dehumidifier for Home,Basements,Large Room,Bathroom,Auto Mode with Drain Hose,2.3L Water Tank,up to 1500 Sq.ft

Breezome 8 Pint Dehumidifier,Portable Dehumidifier for Home,Basements,Large Room,Bathroom,Auto Mode with Drain Hose,2.3L Water Tank,up to 1500 Sq.ft

Price
$419.99
$398.99
Save $21.00
Quantity
SKU:
The Breezome 8 Pint Basement Dehumidifier efficiently removes moisture from large rooms daily, making it ideal for use in bathrooms, living rooms, bedrooms, garages, and kitchens. Its compact design saves space while offering advanced features for optimal performance. The dehumidifier includes three basic dehumidification modes and a constant humidity function, and a humidity display for real-time monitoring. The front-facing fan can be stored close to the wall for space-saving convenience. Additional features include a drainage pipe, automatic defrost function, a 2.3L large-capacity water tank, and easy mobility with a built-in handle and swivel casters.Its intelligent design and portability make it a versatile and user-friendly solution for maintaining a comfortable indoor environment.
  • 🌟SMART HUMIDITY CONTROL WITH DIGITAL DISPLAY• Auto Mode: Automatically maintains your set humidity level (40%-70% adjustable)• Digital Display: Real-time humidity % + mode status at a glance
  • ⚡ 3 MODES FOR EVERY NEED• Moderate Mode:22 pints/day (DOE standard @ 80% RH),Ideal for daily use in living spaces,Energy-saving operation• High Mode:30 pints/day (extreme humidity @ 95% RH),Turbo drying for basements/laundry rooms,25% faster moisture removal• Sleep Mode:Ultra-quiet <45dB operation,Display optional light-off,Ideal for bedrooms/nurseries
  • ✅ WHY THIS DEHUMIDIFIER?✔ Precision Control - Lowest 40% RH setting,Auto Mode handles humidity fluctuations✔ Dual Drainage System:Continuous drainage (4ft hose included)/1.35L tank with auto-shutoff✔ Whole-Home Coverage:Effective in spaces up to 1,500 sq.ft✔ Whisper-Quiet:<45dB (quieter than refrigerator hum)🔧 USER-CONVENIENCE FOCUSED• One-touch mode switching• Wall-adjacent use• 24-hour timer• Child lock• Wheels for easy portability• Washable filter with dust-blocking mesh• Auto-shutoff• Auto-defrost (works down to 41°F)📦 INCLUDES1x Dehumidifier1x Drain hose1x User manualThe product's warranty service reaches 1 year.
Get Extended 12-Month warranty coverage when you register your Breezome Products. Register to Get Total 24-Month Warranty Now.

Dimensions(HxWxD) 11x11x11 in
Product Weight 15Ibs
Energy Consumption 7-42Watts
Sound Level Specification
Air Outlet Side
Recommended Filter Change Every6-12 Months Depending On Your Environment
Recommended Room Size 356 ft2
Air Changes Per Hour (ACH) 4.8
Clean Air Delivery Rate (CADR) 255Cfm
Number Of Filters 3
Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.