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

Hikvision B1 Dashcam with 32GB Micro-SD

SKU: AE-DC2015-B1-32G
R 999.00
Out of Stock

The Hikvision B1 Dashcam with a 32GB Micro-SD card delivers reliable and high-quality video recording for your vehicle. It captures footage at up to 1080p resolution with a wide 166° field of view, ensuring comprehensive coverage of the road. With support for up to a 128GB SD card, the dashcam...

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 B1 Dashcam with a 32GB Micro-SD card delivers reliable and high-quality video recording for your vehicle. It captures footage at up to 1080p resolution with a wide 166° field of view, ensuring comprehensive coverage of the road. With support for up to a 128GB SD card, the dashcam features overwriting capabilities, ensuring continuous recording without data loss.

Equipped with a built-in G-Sensor, the B1 Dashcam automatically records when it detects a crash or strong vibration. Its built-in Wi-Fi module allows easy access to live view, video playback, and configuration settings via a smartphone app. The Dashcam is designed for hassle-free installation and starts recording automatically when powered on. Offering low power consumption and high performance, the Hikvision B1 Dashcam is a reliable solution for ensuring road safety and recording important events while driving.

FEATURES:

  • Up to 1080p resolution, with 166° FOV.
  • SD card for video recording, supports up to 128GB. (Overwriting supported)
  • Built-in G-Sensor module supports video recording linkage at a car crash or strong vibration.
  • Built-in WI-FI module and WI-FI AP function supported.
  • Phone App: live view, record playback and parameter configuration.
  • Easy installation and operation.
  • Auto recording once the device is powered on.
  • Low power consumption and high performance.

SPECIFICATIONS:

  • Video:
  • Image Sensor: CMOS
  • Lens Type: 5 G+P
  • Aperture: F2.0
  • Wi-Fi: 
  • Frequency Range: 2412-2472MHZ
  • Channel Bandwidth: 20MHZ
  • Interface: 
  • Built-in Microphone: YES
  • Built-in Speaker: YES
  • General: 
  • GPS: YES
  • Wi-Fi: 2.4 GHz
  • Resolution: 1080p@25fps, 720p@25fps
  • Max. Resolution: 1080p@25fps
  • Video Compression: H.264
  • FOV: 166° (D), 115° (H)
  • Sensor: F23
  • Software Reset: YES
  • Online Upgrade: YES
  • Power Supply: 5V DC, 1 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
  • Image format: JPEG
  • Local Storage: NO
  • ADAS: NO
  • Speech recognition: NO
  • Camera Dimension: 5.93 cm x 5.92 cm x 2.56 cm
  • Camera Weight: 47.3g

WHAT’S IN THE BOX:

  • Hikvision B1 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 F6 PRO Dashcam with 32GB Micro-SD
HIKVISION

Hikvision F6 PRO Dashcam with 32GB Micro-SD

R 1 799.00

Out of Stock

WINX TRACK Pro 2K Dash Cam
WINX

WINX TRACK Pro 2K Dash Cam

R 969.00

Out of Stock

Hikvision F6 PRO Dashcam with 64GB Micro-SD
HIKVISION

Hikvision F6 PRO Dashcam with 64GB Micro-SD

R 2 199.00

Out of Stock

Hikvision C200S Dashcam, with 64GB Micro-SD
HIKVISION

Hikvision C200S Dashcam, with 64GB Micro-SD

R 1 699.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!