Hikvision Buckline Power Cable 3.5M F6 Pro + B1 - HIKVISION | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
HIKVISION

Hikvision Buckline Power Cable 3.5M F6 Pro + B1

SKU: AE-DF7351
R 229.00 R 269.00
You save R 40.00 (15%)
In Stock
You save R 40.00 (15% off)

The Hikvision AE-DF7351 Micro-USB Buckline Power Cable is a reliable and efficient power management solution engineered specifically for vehicle-based security setups. Designed to ensure uninterrupted power to your Hikvision dash or onboard cameras, this versatile buckline cable is ideal for...

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

Frequently Bought Together

The Hikvision AE-DF7351 Micro-USB Buckline Power Cable is a reliable and efficient power management solution engineered specifically for vehicle-based security setups. Designed to ensure uninterrupted power to your Hikvision dash or onboard cameras, this versatile buckline cable is ideal for applications such as parking monitoring, where the camera must remain powered even when the vehicle is turned off. With its smart and stable power regulation, it offers peace of mind by safeguarding your recordings and enhancing 24/7 security.

This durable cable features a Micro-USB connector and a robust black build to seamlessly integrate with your vehicle’s interior. Compatible with a broad range of Hikvision models—including the AE-DC2015-B1, AE-DC5113-F6S, AE-DC5013-F6PRO, and more—it delivers DC output of 5.0V–5.3V regulated from a 12–24V input. This broad compatibility and dependable voltage regulation make it a preferred choice for users looking to power dash cams or similar devices from the car’s power system.

Designed to function under extreme environmental conditions, the AE-DF7351 operates efficiently across a wide temperature range of -20°C to 65°C, with humidity resistance up to 95%. The cable also incorporates low power protection at 11.3V±0.2V, which prevents the car battery from draining excessively, ensuring your vehicle remains operational even after extended parking surveillance sessions.

With a cable length of 3.5 meters, it offers flexible installation options throughout the cabin or near the windshield. Whether you're a professional installer or an end-user, the cable’s smart design ensures easy integration and reliable performance, making it an essential accessory for maintaining your vehicle's security infrastructure.

FEATURES:

  • Versatile power solution for automobile security systems
  • Designed for parking monitoring while vehicle is off
  • Micro-USB connector
  • Stable and reliable power
  • Compatible with various Hikvision cameras
  • Convenient 3.5m cable length

SPECIFICATIONS:

  • Colour: Black
  • Power Interface: Mini left
  • Power Supply DC: 12-24V, 2A
  • Line length: Input line 1.3m, output line 2.1m
  • Wire specification: VIN3-core 17/0.15 2C yellow black 7/0.15 1C red
  • Input requirements: Rated input voltage DC:12-24V Maximum input current ≥2A
  • Type of output: No-load output voltage DC:5.0V-5.3V
  • Low power protection: 11.3V±0.2v
  • Working temperature: -20 °C to 65 °C
  • Working humidity: 95%(Max)
  • Compatible Hikvision Cameras:
    • AE-DC2015-B1
    • AE-DC5113-F6S
    • Hi-D32F6/G
    • AE-DC5013-F6PRO
    • AE-DC2015-B1
    • AE-DC5313-C6
    • AE-DC5313-C6PRO
    • AE-DC5013-F6
    • AE-DC8012-C8
    • Hi-D20B1
    • AE-DC5013-F6S
  • Cable Length: 350cm
  • Product Dimensions: 38 x 0.4 x 0.4 cm
  • Product Weight: 122g

WHAT'S IN THE BOX:

  • Hikvision AE-DF7351 Micro-USB Buckline Power Cable x1
Brand HIKVISION
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

-51%
Gizzu Surge Protector 10A Kettle Plug Cable 1.5M
Gizzu

Gizzu Surge Protector 10A Kettle Plug Cable 1.5M

R 39.00 R 79.00

Save R 40.00

In 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!