Hikvision F6 PRO Dashcam with 32GB Micro-SD - HIKVISION | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
HIKVISION

Hikvision F6 PRO Dashcam with 32GB Micro-SD

SKU: AE-DC5013-F6PRO-32GB
R 1 799.00
Out of Stock

The Hikvision F6 PRO Dashcam with a 32GB Micro-SD card offers advanced features and high-resolution recording for enhanced road safety. With up to 1600P resolution and a 130° wide-angle lens, it captures clear, detailed footage. Its F1.6 large aperture ensures superior night vision, making it...

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 Hikvision F6 PRO Dashcam with a 32GB Micro-SD card offers advanced features and high-resolution recording for enhanced road safety. With up to 1600P resolution and a 130° wide-angle lens, it captures clear, detailed footage. Its F1.6 large aperture ensures superior night vision, making it ideal for low-light conditions.

Key features include built-in microphones and speakers for audio recording, along with Wi-Fi and Wi-Fi AP functions for easy access to live view, playback, and settings via a smartphone app. The integrated G-Sensor triggers video recording during crashes or strong vibrations, with the option to protect footage from being overwritten. GPS support provides speed display and route tracking, while ADAS features offer traffic light, speed limit, and front car start reminders.

Supporting up to a 256GB Micro-SD card and voice commands for snapshot and recording control, the F6 PRO is user-friendly with plug-and-play installation and automatic recording. Its low power consumption ensures reliable, high-performance operation.

FEATURES:

  • Up to 1600P high resolution, gold wide angle up to 130°.
  • F1.6 super large aperture offer a perfect night image.
  • Support built-in MIC and speaker for audio in and out.
  • Built-in WIFI module and WIFI AP function supported.
  • Built-in G-Sensor module, support video recording linkage at car crash or strong vibration.
  • Support GPS module with speed display and route tracking playback.
  • Micro SD card for video recording, up to 256GB. (Overwriting supported)
  • Phone App: live view, record playback and parameter configuration.
  • Voice recognition supported: snapshot, recording on, recording off.
  • ADAS supported: “Traffic light turn green”, “Speed limit recognition”, “Front car start remind”.
  • Easy installation and user friendly, plug and play. (Automatically recording after power on)
  • Low power consumption and high performance.

SPECIFICATIONS:

  • Camera:
  • Image Sensor: OV-05A20
  • Angle Adjustment: Adjustable up angles 30°
  • Power-off Memory: YES
  • Lens:
  • Lens Type: G+P
  • Aperture: F1.6
  • Wi-Fi:
  • Frequency Range: 2412-2472MHZ
  • Channel Bandwidth: 20MHZ/40MHZ
  • Image:
  • Wide Dynamic Range (WDR): NO
  • Image Enhancement: YES
  • Interface:
  • Built-in Microphone: YES
  • Built-in Speaker: YES
  • General:
  • GPS: YES
  • Wi-Fi: 2.4G
  • Wi-Fi Support: YES
  • Resolution: 1600p@30fps, 1600p@25fps; 1440p@30fps, 1440p@25fps; 1080p@30fps, 1080p@25fps
  • Max. Resolution: 1600p@30fps
  • Video Compression: H.265
  • FOV: 130° (D), 109° (H)
  • Camera Dimension: 5.2 x 5.04 x 5.2 cm
  • Camera Weight: 120g
  • Software Reset: YES
  • Online Upgrade: YES
  • Power Consumption and Current: 3.5W
  • Power Supply: 5V DC, 2 A
  • Power Interface: Micro
  • Working temperature: -20 °C to 70 °C (-4 °F to 158 °F)
  • Working humidity: 95%(Max)
  • Storage: TF card, Max. 128 GB
  • OSD: Display time, date, etc.
  • Image format: JPEG
  • Local Storage: NO
  • ADAS: YES
  • Speech recognition: YES

WHAT’S IN THE BOX:

  • Hikvision F6 PRO Dashcam with 32GB Micro-SD – Black x1
  • 32Gb Micro-SD Card x1
  • User Manual 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

Hikvision C200S Dashcam, with 64GB Micro-SD
HIKVISION

Hikvision C200S Dashcam, with 64GB Micro-SD

R 1 699.00

Out of Stock

New
WINX TRACK Pro 2K Dash Cam
WINX

WINX TRACK Pro 2K Dash Cam

R 969.00

Out of Stock

WINX TRACK Essential 2K Dash Cam
WINX

WINX TRACK Essential 2K Dash Cam

R 629.00

Out of Stock

Hikvision B1 Dashcam with 32GB Micro-SD
HIKVISION

Hikvision B1 Dashcam with 32GB Micro-SD

R 999.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!