Menu
Your Cart

Dahua HAC-HDW1400RP 4MP HD Dome Type Camera

Dahua HAC-HDW1400RP 4MP HD Dome Type Camera
Dahua HAC-HDW1400RP 4MP HD Dome Type Camera
  • Price: TK 1,750/-
  • Stock: In Stock
  • Model: HAC-HDW1400RP
TK 1,750/-
Ex Tax: TK 1,750/-

Key Features

    • Model: HAC-HDW1400RP
    • Resolution : 4MP
    • Lens : 3.6 mm Fixed
    • IR Distance : 30 mtr
    Specification
    Camera Info
    BrandDahua
    ModelHAC-HDW1400RP
    Image Sensor1/3 CMOS
    Electronic Shutter SpeedPAL: 1/25~1/100000s NTSC: 1/30~1/100000s
    Minimum Illumination0.02Lux/F2.0, 0Lux IR on
    IR On/Off ControlAuto / Manual
    Camera Lens
    Lens TypeDome Camera
    Warranty Information
    Warranty01 Year
    Description

    Dahua HAC-HDW1400RP 4MP HD Dome Type Camera in bd 

    The Dahua HAC-HDW1400RP 4MP HD Dome Type Camera offers exceptional video quality and robust features, designed for professional surveillance applications. With a 4MP resolution, this dome camera delivers high-definition footage, capturing fine details with impressive clarity, making it ideal for monitoring large areas like entrances, parking lots, and commercial properties.

    The HAC-HDW1400RP is equipped with HDCVI technology, enabling long-distance transmission of video signals without degradation, even in challenging environments. The camera features Infrared (IR) night vision capabilities, ensuring excellent image quality in low-light or complete darkness. With a range of IR LEDs, it can illuminate areas up to 30 meters, providing clear footage at all times of the day and night.

    The camera's dome design offers discreet and stylish installation, perfect for indoor and outdoor use. The IP67 weatherproof rating guarantees its durability against harsh weather conditions, making it a reliable choice for areas exposed to rain, snow, or extreme temperatures.

    Featuring motion detection and auto white balance, the HAC-HDW1400RP is a versatile and dependable security camera that enhances your surveillance system, offering both ease of use and high-quality performance for continuous monitoring.

    Buying Suggestions from Dear IT Solution

    For the Dahua HAC-HDW1400RP 4MP HD Dome Type Camera, trust Dear IT Solution, your preferred destination for high-quality surveillance products in Bangladesh.

    At Dear IT Solution, we provide the Dahua HAC-HDW1400RP at the best price in Bangladesh, ensuring you receive excellent value along with guaranteed quality. With our commitment to providing authentic products and outstanding customer service, you can enjoy a smooth and secure shopping experience.

    Upgrade your security system with the Dahua HAC-HDW1400RP 4MP Dome Camera. Order now from Dear IT Solution for unparalleled reliability and peace of mind!

    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};