12V 100Ah Enjoybot LiFePO4 Lithium Battery | Group 24 & 31

Enjoybot® Deep Cycle Battery
  • Grade-A LiFePO4 Prismatic Cells
  • 100AH, 1280WH Capacity (RC @25A: 240min)
  • 4000+ Cycles at 100% DOD, 10-Year Lifespan
  • Built-in 100A Smart BMS, 6-Layer Protections
  • 100A Max Continuous Discharge (350A 3-5s Peak Discharge)
  • Expandable Up to 4P4S to Form a 48V 400Ah System
  • Zero Maintenance, Environment Friendly
  • IP67 Rated Waterproof and Vibration-proof
*Tip: For golf cart application, this battery handles peak motor loads of 5 kW and controller currents up to 350A.
CA$389.00
CA$429.00
-CA$40.00
Type:  Group 24 | Self Heating & Bluetooth
Pack:  1-Pack
Add-on Charger:  None
Quantity
Shipping
10-Year Warranty & Professional Tech Support
Free shipping (Ontario)
Tax & duty covered
30-day return
Resources
Description
Enjoybot 12V 100Ah LiFePO4 Battery

Premium lithium battery delivering exceptional performance and long-lasting durability for deep cycle applications.

Compact design compatible with Group 24/31 cases, engineered for golf carts, RVs, solar systems, and marine applications.

Automatic Self-Heating

Intelligent automatic self-heating function activates at 32°F charging cutoff and charging resumes at 41°F, preventing cold-weather damage.

Low Temp Cutoff

Automatically halts charging when the temperature drops below 32°F , resumes at 41°F .

Bluetooth 5.0

This innovative feature enables real-time tracking of voltage, capacity, and charging status, making it easier than ever to keep your battery in optimal condition.

Battery Management System

Advanced 100A BMS with six-layer protection, supporting 100A continuous / 350A peak current output.

Scalable Architecture

6S4P configuration achieves 72V 400Ah capacity, enabling flexible expansion for high-demand applications. (max. 4S4P for group 24)

Voltage Upgrade To Fit:

  • 24V 36V Trolling Motors (Minn Kota/ Lowrance/ Garmin)
  • 36V / 48V Golf Cart (EZGO/ Club Car/ Yamaha/ Star EV/ Polaris)
  • 60V / 72V Golf Cart & Electric Low-Speed Vehicles (LSVs)
  • High-voltage demands for RVOff-GridSolar Panel

Packing List:

  • 1* 12V 100Ah Enjoybot LiFePO4 Lithium Battery
  • 2* Terminals & Caps
  • 1* User Manual
Specifications
SKU EB-12100MINI-SHBT EB-12100-6S
BCI Group Group 24 Group 31
Dimension 10.23 x 6.61 x 8.22 in 12.95 x 6.77 x 8.42 in
Weight 22 lbs 23 lbs
Feature Bluetooth / Self-Heating / Low Temp Cutoff Low Temp Cutoff
Cell Grade A LiFePO4 Prismatic Cells Grade A LiFePO4 Prismatic Cells
Terminal M8*16mm (L) M8*16mm (L)
Battery Pack Case ABS Plastic ABS Plastic
Energy 1280Wh 1280Wh
Cycle Life 4,000 times @ 100% DOD 4,000 times @ 100% DOD
4,000 times @ 100% DOD 100% 100%
Nominal Voltage 12.8V 12.8V
Nominal/Usable Capability 100Ah 100Ah
BMS 100A 100A
Max. Continuous Charging Current 50A 50A
Max. Continuous Discharging Current 100A 100A
Peak Discharge Current 350A (3-5 Seconds) 350A (3-5 Seconds)
Max. Load/Inverter Power 1280W 1280W
Charge Voltage 14.2V-14.6V 14.2V-14.6V
Recommend Charge Current 20A 20A
Max. Batteries in Series 4 Packs 6 Packs
Ideal Max. Batteries in Parallel 1-4 Packs 1-4 Packs
Max. Batteries in Parallel 10 Packs 10 Packs
Max. Configuration 4S4P (build 48V 400Ah battery system) 6S4P (build 72V 400Ah battery system)
Charge Temperature -4°F ~ 131°F (-20°C ~ 55°C) 32℉ ~ 122℉ (0℃ ~ 50℃)
Discharge Temperature -4℉ ~ 140℉ (-20℃ ~ 60℃) -4℉ ~ 140℉ (-20℃ ~ 60℃)
Storage Temperature 14℉ ~ 122℉ (-10℃ ~ 50℃) 14℉ ~ 122℉ (-10℃ ~ 50℃)
Overview
4000 Cycles
Advanced 100A BMS
Bluetooth
Internal Heating
IP67 Waterproof
10 Years Warranty
Bluetooth feature only available in Group 24 version
Valuable Insights From The Pro
BASS n BEER
🔋Model: 12V 100Ah Group 24
New Power for the Tiny Off Grid Cabin (EnjoyBot) DIY System
Go Midwest Fishing
🔋Model: 12V 100Ah Group 24
How Far Will Your Trolling Motor Go on One Charge
Perfect Fit Boating
🔋Model: 12V 100Ah Group 31
Easy 100 Watt Solar Setup On Our Boat | Beginners Guide EnjoyBot Battery
Our Battery In Real Life
Check out how they looks like in different applications from our customers.
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.