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

Hikvision C200S Dashcam, with 64GB Micro-SD

SKU: AE-DC2328-C200S-64GB
R 1 699.00
Out of Stock

Enhance your driving security with the Hikvision C200S Dashcam, a high-performance in-car recording solution with built-in Wi-Fi and advanced safety features. This dashcam captures crisp 1080P Full HD footage with a wide 121° diagonal field of view, ensuring comprehensive coverage of the road...

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

Enhance your driving security with the Hikvision C200S Dashcam, a high-performance in-car recording solution with built-in Wi-Fi and advanced safety features. This dashcam captures crisp 1080P Full HD footage with a wide 121° diagonal field of view, ensuring comprehensive coverage of the road ahead. Its F2.0 large aperture lens delivers exceptional low-light performance, making nighttime recordings clearer and more detailed.

Equipped with a built-in G-Sensor, the C200S automatically records and locks footage during collisions or strong vibrations, preventing accidental overwrites of critical moments. The integrated microphone and speaker allow for clear audio recording, while the 3-inch IPS display provides an intuitive interface for live viewing and playback.

With support for microSD cards up to 256GB, this dashcam offers extensive storage for loop recording. The companion mobile app enables remote live view, playback, and configuration, ensuring seamless control from your smartphone. Designed for effortless plug-and-play operation, the Hikvision C200S starts recording automatically upon power-up, making it a reliable and user-friendly choice for everyday drivers.

FEATURES:

  • Up to 1080P high resolution, with horizontal 101°wide angle, diagonal 121°
  • F2.0 super large aperture offers a perfect night image
  • Support built-in MIC and speaker for audio in and out
  • Display: 3 inches IPS screen, Resolution: 360*640
  • Built-in WIFI module and WIFI AP function supported.
  • Built-in G-Sensor module, supports video recording linkage at a car crash or strong vibration
  • TF card for video recording, up to 256GB. (Overwriting supported)
  • Phone App: live view, record playback and parameter configuration
  • Easy installation and user-friendly, plug-and-play. (Automatically recording after power on)
  • Low power consumption and high performance

SPECIFICATIONS:

  • Camera
  • Resolution: 1080P@30fps+1080P@25fps
  • GPS: No
  • WiFi: Yes
  • Max. Resolution: 1920x1080P @30fps
  • Video Compression: H.264
  • FOV: Front camera 121°(D),101°(H),53°(V) Rear camera 124°(D),102°(H),53°(V) Sensor G-Sensor
  • Image Sensor: CMOS
  • Storage: TF card, 16GB to 256 GB
  • Local Storage: Yes
  • ADAS: No
  • Speech Recognition: Yes
  • Aperture: F2.0
  • Interfaces
  • Power supply: Type-C
  • 4G Box: No
  • Audio: MIC Input、Built-in speaker output
  • General
  • Working Temperature: -20℃ to 65℃
  • Working Humidity: 0% to 95%
  • Power supply: 5 VDC, 2A
  • Power consumption: Approx. 3 W
  • Dimension (L x W x H): 8.5 × 8.2 × 6.5 cm
  • Weight ( Approx ): <100g
  • OSD: Display time, date, etc.
  • Image format: JPG

WHAT’S IN THE BOX:

  • Hikvision C200S Dashcam with 64GB Micro-SD x1
Brand HIKVISION
Colour -
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

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

Hikvision F6 PRO Dashcam with 64GB Micro-SD
HIKVISION

Hikvision F6 PRO Dashcam with 64GB Micro-SD

R 2 199.00

Out of Stock

New
WINX TRACK Pro 2K Dash Cam
WINX

WINX TRACK Pro 2K Dash Cam

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