Xiaomi Smart Camera C500 Pro (5MP, HDR, AI Detection) - Xiaomi | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Xiaomi

Xiaomi Smart Camera C500 Pro (5MP, HDR, AI Detection)

SKU: BHR8088GL
R 1 499.00
In Stock

The Xiaomi Smart Camera C500 Pro delivers next-generation home security with advanced imaging, intelligent surveillance, and best-in-class data protection. Engineered with a 5MP sensor, it captures ultra-clear 3K video at 2960 x 1666 resolution, ensuring every detail is preserved with exceptional...

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

Frequently Bought Together

The Xiaomi Smart Camera C500 Pro delivers next-generation home security with advanced imaging, intelligent surveillance, and best-in-class data protection. Engineered with a 5MP sensor, it captures ultra-clear 3K video at 2960 x 1666 resolution, ensuring every detail is preserved with exceptional clarity. The HDR mode optimises exposure in high-contrast environments, while its ultra-low light colour mode allows for full-colour video capture even in dim conditions, supported by an infrared illuminator for sharp black-and-white night vision when needed.

With a dual-motor pan-tilt-zoom mechanism, the C500 Pro offers full-room coverage with 360° horizontal and 114° vertical rotation, virtually eliminating blind spots. Its AI-powered features provide smart detection capabilities, including human recognition, pet movement, crying baby alerts, loud sound detection, and customisable primary area monitoring, delivering proactive, real-time notifications directly to your smartphone.

Privacy is embedded at the core of the C500 Pro. A mechanically retractable lens shield ensures physical security when the camera is inactive, controlled remotely via smartphone, with customisable sleep times for enhanced user control. The MJA1 hardware-level security chip, combined with AES-128 encrypted cloud storage and dual encryption protocols, provides financial-grade data protection.

For seamless connectivity, the camera supports dual-band Wi-Fi (2.4GHz and 5GHz), Bluetooth 5.2, and is compatible with Android and iOS. Voice control is available via Google Assistant and Amazon Alexa, enabling hands-free operation. Two-way audio functionality allows for real-time interaction, simulating presence even while away from home.

With expandable microSD storage (up to 256GB), smart surveillance modes, and flexible installation options, the Xiaomi Smart Camera C500 Pro is a comprehensive solution for modern home monitoring—combining intelligent automation, robust security, and privacy-first design.

FEATURES:

  • Two-way audio communication
  • Ultra-clear 3K video with 5MP Imaging
  • Dual-bandWi-Fi and Bluetooth 5.2
  • Intelligent AI detection of crying bay , loud sounds, pets and human movement
  • Dual-motor 360° pan-tilt-zoom with custom surveillance zones
  • Encrypted cloud and local data storage
  • Customisable mechanical lens shield protects privacy
  • HDR mode clears images even with backlight or glare
  • Ultra-low light colour mode & infrared night vision
  • Voice Assistant Support: Google Assistant and Amazon Alexa

SPECIFICATIONS:

  • Resolution: 2960 x 1666
  • Camera Sensor: 5MP
  • Aperture: F1.4
  • Video Coding: H.265
  • Connectivity: Wi-Fi (2.4GHz/5GHz), IEEE 802.11 a/b/g/n; Bluetooth 5.2
  • Storage Support: microSD (8GB to 256GB)
  • Power Input: 5V ⎓ 2A
  • Operating Temperature: -10°C to 45°C
  • Wi-Fi Output Power:
    • 2400–2483.5 MHz: <20 dBm
    • 5150–5350 MHz: <23 dBm
    • 5470–5725 MHz: <23 dBm
    • 5725–5850 MHz: <14 dBm
  • Bluetooth Output Power: 2402–2480 MHz: <10 dBm
  • Dimensions: 7.8 x 7.8 x 12.4 cm
  • Weight: 301 g

WHAT'S IN THE BOX:

  • Xiaomi Smart Camera C500 Pro x1
  • User manual x1
  • Power cable x1
  • Wall mounting accessories pack x1
Brand Xiaomi
Colour White
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

Xiaomi Outdoor Camera AW300
Xiaomi

Xiaomi Outdoor Camera AW300

R 1 159.00

Only 2 left - order soon!

Xiaomi Smart Camera C500 Dual (4MP, 360° PTZ, AI Detection, Night Vision)
Xiaomi

Xiaomi Smart Camera C500 Dual (4MP, 360° PTZ, AI Detection, Night Vision)

R 1 999.00

Only 1 left - order soon!

Xiaomi Outdoor Camera CW400
Xiaomi

Xiaomi Outdoor Camera CW400

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