Portable Power Station X1500, 1036Wh LiFePO4 (LFP) Battery, 1500W(Peak 3000W) Solar Generator (Solar Panel Optional) for Camping RVs Home Use Emergency Travel

$36.96
$699.00
-95%
Style:  X1500 Power Station
Quantity

Description


About this item

  • 【Power Your Life】1500W (3000W Peak) portable power station is equipped with 1036Wh capacity, Pure Sine Wave technology AC outlets deliver stable and safe power. Built-in 3-level LED light and SOS mode to satisfy your outdoor needs. LCD screen shows all power station operating status easily and timely. Perfect for emergency power supply, outdoor activities and home backup.
  • 【Long Lasting Battery】Using LFP(LiFePO4) battery makes for a portable power station with a 3500+ cycle life. That's almost 10 years of regular use. Also, It features a super safe DiBMS protection system developed by DEENO, which provides multiple protection for the battery, including Over-Charge Protection, Over-Discharge Protection, Over-Voltage Protection, Over-Current Protection, High-Temperature Protection,etc. keep your LFP battery running for years.
  • 【Power Up to 12 Devices】 The portable power station featuring 3* AC outlet, 2* DC outlet, 2* USB-C ports, 3*USB-A ports, 1*Car outlet and 1*Wireless charger, It can power almost all your devices at once. Ideal for outdoor off-grid activities and home backup power to power refrigerator, TV, mini cooler, electric grill, fan, CPAP machine, and more for your outdoor and home needs.
  • 【Green Power & Solar Energy】100% green energy with smart MPPT controller for optimal charging efficiency. The solar generator can be fully charged with DEENO 200W solar panels within 6 hrs. You can enjoy your wonderful holiday for tent camping, overland journey and etc with it. Power failure and emergency is also applicable.
  • 【Contains & Services】WHAT YOU GET: 1* DEENO X1500 Portable Power Station, 1* AC Wall Adapter, 1* 12V Car Charger Cable, 1*MC4 Connector Cable, 1* User Manual. You'll also get 5 years warranty and friendly customer service.

Product Description

SPECIFICATIONS

Capacity1036Wh (28.8V 36Ah)
Battery TypeLiFePO4 (Lithium Iron Phosphate)
Adapter Input25.2V⎓8A (200W Max)
AC Output1500W (3000WPeak) pure sine wave
Car Charge Input12V⎓8A / 24V⎓8A (196W Max)
Car Charge Output12V⎓10A (120W Max)
Solar Energy Input12-32V⎓8A (200W Max)
USB-A Output5V⎓3A, 9V⎓2A,12V⎓1.5A (18W Max)
USB-C Output5V/9V/12V/15V⎓3A / 20V⎓5A (100W Max)
DC5.5*2.5 Output24V⎓5A (120W Max)
DC5.5*2.1 Output12V⎓5A (60W Max)
Charging Temperature32°F-113°F / 0°C-45°C
Discharging Temperature:-4°F-113°F / -20°C-45°C
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.