GIZZU 60W 69Wh 21600mAh Mini POE DC UPS LifePO4 - Black - Gizzu | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Gizzu

GIZZU 60W 69Wh 21600mAh Mini POE DC UPS LifePO4 - Black

SKU: GUP60WPRO
R 579.00
Out of Stock

The Gizzu 60W Mini DC 69Wh UPS is simple to install and allows you to power various devices during a power outage. With multiple-voltage DC outputs, this UPS can power both your Router and ONU (Optical Network Unit) so you can continue browsing the web, working online, or streaming. CCTV cameras...

Get Notified When Available

Enter your email and we'll notify you when this item is back in stock.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

The Gizzu 60W Mini DC 69Wh UPS is simple to install and allows you to power various devices during a power outage. With multiple-voltage DC outputs, this UPS can power both your Router and ONU (Optical Network Unit) so you can continue browsing the web, working online, or streaming. CCTV cameras and VoIP phones can also be connected and powered via the Gigabit Power Over Ethernet (PoE) port. Charge mobile devices such as cell phones and tablets via USB. Featuring 12 high-capacity lithium-iron phosphate(LiFePO4) 21600mAh batteries which ensure a longer life span than traditional lithium-ion batteries.

Lithium Iron Phosphate (LiFePO4) batteries are safer thanks to their phosphate cathode cells, which make them much more stable & provide more cycles. This means LiFePO4 batteries can outlast regular lithium-ion batteries and traditional lead-acid batteries. It can safely power your ONU device for up to 23 hours, your router for up to 6.9 hours, or the combination of your router and an ONU device for up to 5.3 hours. This mini UPS also comes with safety protocols such as over-charge, over-discharge, and short-circuit protection.

Warning: Please ensure that the combined power draw of connected devices does not exceed 60W. Ensure the voltage of the device is connected to the correct voltage output before turning the UPS on. Failure to adhere to this warning may result in damage to the connected devices. Refer to your manual for additional safety information.

FEATURES:

  • Power your Router and ONU (Optical Network Unit) during power outages
  • Keep your mobile devices charged with dual USB ports
  • 69Wh High-capacity Lithium Iron Phosphate (LiFePO4) batteries
  • Power your CCTV cameras and VoIP phones with Gigabit PoE
  • Compatible with a wide range of routers
  • Intelligent protective design with over-charge, over-discharge, and short-circuit protection

SPECIFICATIONS:

  • Input Voltage: 100 – 240V AC
  • DC Output Voltage: 2 x 5V+USB (2A), 1 x 9V/12V (selectable)(2A), 4 x 12V (5A), 1 x Solar Input (2A), 1 x 24/48V (Passive PoE 1G)(1/0.4A), power method: 4-pairs (1, 2+; 3, 6-)(4, 5+; 7, 8- )
  • Power Output: 60W
  • Battery Capacity: 21600mAh
  • Battery Information: 1800mAh x 12 (Lithium-iron LiFePO4)
  • Total Watt Hours: 69Wh
  • Estimated Recharges: Smart Phone (3500mAh): 7, Tablet (7000mAh): 4, Headlamp (1800mAh): 12
  • Estimated Run Time: ONU (3W): 23hrs, Router (10W): 6.9hrs, CCTV Cameras (10W): 6.9hrs, VoIP Phone (7W): 9.8hrs
  • Product Dimensions: 25.8 x 15.2 x 4.6 cm
  • Product Weight: 1110g

WHAT'S IN THE BOX:

  • Gizzu 60W Mini DC 69Wh UPS – Black x1
  • 1m AC Power Cable x1
  • 1m 2.5mm DC Power Cable x2
  • 30cm DC Splitter Cable x1
  • 5.5×2.1mm DC Adapter x1
  • 4×1.7mm DC Adapter x1
  • 3.5×1.35mm DC Adapter x1
  • PoE-converter x1
  • User Manual x1
Brand Gizzu
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 12 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

GIZZU 60W 65Wh 17600mAh Mini POE DC UPS Lithium - Black
Gizzu

GIZZU 60W 65Wh 17600mAh Mini POE DC UPS Lithium - Black

R 489.00

Out of Stock

GIZZU 30W 32Wh 8800mAh Mini DC UPS Lithium - Black
Gizzu

GIZZU 30W 32Wh 8800mAh Mini DC UPS Lithium - Black

R 399.00

Out of Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!