Mobile
Dahua Security Mobile is a specialized feature of Dahua’s comprehensive mobile surveillance solution, designed to provide users with convenient, on-the-go access to their security systems via mobile devices. This subcategory allows users to seamlessly manage and monitor their entire security network from anywhere, at any time, using their smartphone or tablet.
4G Series
4G Series
Dahua 4G Series cameras leverage cellular networks for remote surveillance, enabling monitoring in locations without wired internet access.

Access Control
Access Control
Dahua Security Access Control is a physical security solution designed to regulate and monitor who can enter specific areas within a building or facility. It replaces traditional locks and keys with electronic systems that authenticate individuals before granting access, improving safety and administrative control.

Access Control & Time Attendance
Access Control & Time Attendance
Dahua Security Access Control & Time Attendance systems are designed to manage and monitor entry points, track employee attendance, and enhance overall security for organizations. These systems integrate a variety of technologies, including biometric recognition, RFID, and PIN/password access methods, ensuring both security and convenience.

Accessories
Accessories
Dahua Security Network Recorder (NVR) accessories are essential components designed to enhance, support, and maintain the performance and reliability of your Dahua surveillance system. These accessories ensure seamless integration, expand system capabilities, and provide the necessary tools for installation, maintenance, and optimal operation of Dahua NVRs.

Accessories
Accessories
Access Control & Time Attendance Accessories are the supporting hardware components used with Dahua access control and attendance systems. These accessories extend, enhance, and complete the core system’s functionality by enabling secure door operation, reliable credential reading, power management, and environmental protection.

Addressable Fire Alarm System
Addressable Fire Alarm System
An Addressable Fire Alarm System is an advanced type of fire detection system that provides a higher level of precision and control compared to traditional conventional fire alarm systems. Unlike conventional systems, which only indicate the general area where an alarm is triggered, addressable fire alarm systems allow for precise identification of the specific device (such as a smoke detector, heat detector, or manual call point) that has detected smoke, heat, or a fire hazard. This makes them especially suitable for large, complex buildings or facilities with multiple zones.

AI
AI
Dahua Security Access Control & Time Attendance AI refers to the intelligent versions of Dahua’s access control and employee attendance systems that use artificial intelligence to make identity verification and attendance tracking faster, more reliable, and more secure. These AI‑enhanced products combine access control hardware with deep learning algorithms for features like face recognition, anti‑spoofing, behavioral analysis, and advanced attendance logging.

Alarms
Alarms
Dahua Alarm Systems provide intelligent, reliable, and real-time protection for residential, commercial, and industrial environments. Designed to detect security threats quickly and accurately, Dahua alarms integrate advanced sensors, smart analytics, and seamless connectivity to enhance overall safety and situational awareness.

Anti-Corrosion Cameras
Anti-Corrosion Cameras
Protect your assets with Anti-Corrosion Cameras, specially designed for extreme and challenging environments. Built with rugged materials and certified with NEMA 4X or similar anti-corrosion standards, these cameras ensure long-lasting performance in industrial, marine, and outdoor applications.

Audio
Audio
Dahua’s security audio products are designed to deliver high-quality sound capture and transmission for professional surveillance environments. Built with advanced noise reduction, wide dynamic range, and durable components, Dahua microphones, speakers, and audio modules ensure clear communication and accurate audio monitoring even in challenging conditions.

MPT221
Android 9.0. 8-core 1.8 GHz High-Performance CPU. 2.0 touch screen. Supports 1080p@30 fps recording, the image resolution up to 34MP (7808 × 4400). H.265/H.264 high compression coding. Support 2G/3G/4G Cellular network, WiFi, Bluetooth, NFC, GPS/GLONASS positioning. LED illumination, and auto IR mode, OSD overlay. Power saving mode optional, pre-record and post-record up to 60 s. 16…
MPT220
Dahua Data Collection Station is a data collection system which is composed of control module and data collection module, and can automatically charge, identify and authenticate mobile portable terminals (MPTs). It automatically collects digital evidences (such as videos, audios, and photos) from MPTs, mark important files, search and playback the recording files through local screen…
MNVR4104-I
The whole series adopt a new master control solution The whole series support h.265 and smart265 All channels support 1080p All products use the same application Integrated gyroscope supports detections and alarm of rollover, collision, rapid turn, rapid speedup and sharp brake to optimize the alarm sensitivity. The whole series are compatible with single hard…
EEC300
Each EEC300D8-N1 contains 8 docks which can connect Dahua body cameras. Each dock contains a cable with micro USB 2.0 interface. Electronic lock design for each dock which can be unlocked only by authorized user. Mechanical lock at the bottom which can be used to unlock docks. Docks in the first row can be configured…
MNVR4208-GFWI
The whole series adopt a new main control solution The whole series support h.265 and smart265 All channels support 1080p All products use the same application Integrated gyroscope supports detections and alarm of rollover, collision, rapid turn, rapid speedup and sharp brake to optimize the alarm sensitivity. The whole series are compatible with single hard…
EEC300D8-N1
Each EEC300D8-N1 contains 8 docks which can connect Dahua body cameras. Each dock contains a cable with micro USB 2.0 interface. Electronic lock design for each dock which can be unlocked only by authorized user. Mechanical lock at the bottom which can be used to unlock docks. Docks in the first row can be configured…
MNVR8104-GFWI
New main control solution is adopted for the whole series. The whole series supports H.265 and smart265. All channel support 1080P. The same application is used for the whole series. The whole series supports gyroscope and event detection and alarm such as rollover, collision, threshold, rapid slowdown and rapid turn, and optimizes alarm sensitivity. The…
EEC400
Downloads recording files from MPTs and charges them when they are connected. Supports searching for files by time, user ID, type and more. It can search for videos, audios and images under type. MPT firmware can be manually or automatically updated. Includes a USB 2.0 port and USB 3.0 port, which can be connected to…
MNVR8208-GFWI
New main control solution is adopted for the whole series. The whole series supports H.265 and smart265. All channel support 1080P. The same application is used for the whole series. The whole series supports gyroscope and event detection and alarm such as rollover, collision, threshold, rapid slowdown and rapid turn, and optimizes alarm sensitivity. The…
MXVR4104-GFWI
The whole series adopt a new main control solution The whole series support h.265 and smart265 All channels support 1080p, M12 aviation port All products use the same application Integrated gyroscope supports detections and alarm of rollover, collision, rapid turn, rapid speedup and sharp brake to optimize the alarm sensitivity. The whole series are compatible…
<?php
$term = get_queried_object();
if ($term && 'product-category' === $term->taxonomy) {
// Ambil slug kategori yang aktif
$selected_category_slug = $term->slug;
$args = array(
'post_type' => 'product',
'posts_per_page' => -1,
'tax_query' => array(
array(
'taxonomy' => 'product-category',
'field' => 'slug',
'terms' => $selected_category_slug,
'operator' => 'IN',
),
),
);
// Query untuk produk
$query = new WP_Query($args);
$product_types = array();
if ($query->have_posts()) :
while ($query->have_posts()) : $query->the_post();
$product_types_terms = get_the_terms(get_the_ID(), 'product-type');
if ($product_types_terms && !is_wp_error($product_types_terms)) {
foreach ($product_types_terms as $term) {
if (!in_array($term->slug, $product_types)) {
$product_types[] = $term->slug;
}
}
}
endwhile;
$selected_product_type_slugs = $product_types;
wp_reset_postdata();
endif;
// Menampilkan hasil tipe produk yang unik
if (!empty($selected_product_type_slugs)) {
echo '<ul class="unique-product-types">';
foreach ($selected_product_type_slugs as $type) {
$term = get_term_by('slug', $type, 'product-type' );
$args = array(
'post_type' => 'product', // Or your custom post type like 'product', 'book', etc.
'posts_per_page' => -1, // To retrieve all matching posts, or a specific number
'tax_query' => array(
array(
'taxonomy' => 'product-type', // Replace with your taxonomy slug (e.g., 'category', 'post_tag', or custom taxonomy)
'field' => 'slug', // Specify that we are querying by the term slug
'terms' => $type, // Replace with the actual slug of the term you want to filter by
),
),
);
echo $term->name;
echo "<br/>";
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
// Display post content here
echo the_title();
echo the_content();
}
wp_reset_postdata(); // Restore original post data
}
echo '<li>' . esc_html($type) . '</li>';
}
echo '</ul>';
}
}
?>

