48V 150AH Enjoybot LiFePO4 Lithium Golf Cart Battery Conversion Kit - 4 batteries

Enjoybot® Deep Cycle Battery
    Included Components:
  • 4 X 48V 150Ah Plus LiFePO4 Battery - 7680Wh
  • 1 X 58.4V 15A Battery Charger - 10 Hrs Full Charge
  • 1 X Battery Monitor 500A with Shunt
  • 1 X DC-DC 48V to 12V Step Down Converter
  • 3 X 3 AWG Cable
This kit is suitable for 48V golf carts with a motor power of up to 5kW and a controller current of up to 500A.

* If applicable, an additional 14.6V charger can be used for balancing multiple batteries connected in series.
CA$2,671.00
CA$2,751.00
-CA$80.00
Type:  Group 31 | Self Heating & Bluetooth
Pack:  4-Pack(Build a 48V 150Ah Golf Cart Power Supply)
Quantity
Shipping
10-Year Warranty & Professional Tech Support
Free shipping (Ontario)
Tax & duty covered
30-day return
Resources
Description
Enjoybot 48V 150Ah Golf Cart Conversion Kit

A hassle-free, high-performance upgrade for your 48V golf cart, street-legal golf cart, UTV, or LSV. 

One and done. Everything included in your package!

Wide Compatibility

Compatible with leading brands like EZGO, Club Car, Yamaha, Star EV, and Polaris . Ideal for golf cart with motor under 5kw  and controller under 500A .

Powerful than Before

Advanced 100A BMS delivers 150A continuous current and 500A peak (3-5s) for enhanced power on any terrain.

Reliable Ride

With Bluetooth connectivity and low-temperature protection, it ensures a smooth, reliable ride no matter the conditions. Extra battery monitor included.

Fast Charging

Fully charges in just 10 hours with 58.4V 15A fast charger, DC-DC buck converter ensures smooth operation of all 12V electrical devices on your golf cart.

Packing List:

  • 4* 12V 150Ah Enjoybot LiFePO4 Lithium Battery
  • 1* 58.4V 15A Enjoybot LiFePO4 Lithium Charger
  • 1* 500A Battery Monitor with Shunt
  • 1* DC-DC Converter
  • 3* 3 AWG Cable
  • 2* Terminals & Caps Per Battery
  • 1* User Manual
Specifications
SKU EB-12V150AH-SH
BCI Group 31
Dimension 12.95 x 6.77 x 8.42 in
Weight 31.6 lbs (14.34kg)
Terminal M8*16mm (L)
Battery Pack Case ABS Plastic
Feature Bluetooth / Self-Heating / Low Temp Cutoff
Energy 1920Wh
Cycle Life 4,000 times @ 100% DOD
Max Depth of Discharge (DOD) 100%
Nominal Voltage 12.8V
Nominal/Usable Capability 150Ah
BMS 150A
Max. Continuous Charging Current 75A
Max. Continuous Discharging Current 150A
Peak Discharge Current 500A (3-5 Seconds)
Max. Load/Inverter Power 1920W
Charge Voltage 14.2V-14.6V
Recommend Charge Current 40A
Max. Batteries in Series 4 Packs
Ideal Max. Batteries in Parallel 1-4 Packs
Max. Batteries in Parallel 10 Packs
Max. Configuration 4S4P (build 48V 600Ah battery system)
Charge Temperature -4℉ ~ 131℉ (-20℃ ~ 55℃)
Discharge Temperature -4℉ ~ 140℉ (-20℃ ~ 60℃)
Storage Temperature 14℉ ~ 122℉ (-10℃ ~ 50℃)
Overview
4000 Cycles
Advanced 150A BMS
Bluetooth
Internal Heating
IP67 Waterproof
10 Years Warranty
Valuable Insights From The Pro
Brad Cagle
🔋Model: 12V 150Ah
EnjoyBot 12v 150Ah Group 31 Heated + Bluetooth LiFeP04 Lithium Battery
Bootstrap Revival
🔋Model: 12V 150Ah
Range Testing Enjoybot Lithium Golf Cart Batteries - Any Good?
ENDGAME
🔋Model: 12V 150Ah
Off Grid Air Conditioner Run Down Test In Truck Camper Vegas Summer
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.