Menu
Your Cart

Dahua HAC-HFW-1200RP 2MP HDCVI IR Bullet Camera

Dahua HAC-HFW-1200RP 2MP HDCVI IR Bullet Camera
Dahua HAC-HFW-1200RP 2MP HDCVI IR Bullet Camera
  • Price: TK 1,850/-
  • Stock: In Stock
  • Model: HAC-HFW-1200RP
TK 1,850/-
Ex Tax: TK 1,850/-

Key Features

    • MPN: DH-HAC-HFW1200RP
    • Model: HAC-HFW-1200RP
    • Sensor: 1 / 2.7 2MP CMOS
    • Lens: 3.6mm
    • IR Range: Up to 20m
    Specification
    Camera Info
    BrandDahua
    ModelDH-HAC-HFW1200RP
    Camera Lens
    Camera Optic
    • Resolution : 2MP /1080P
    • Key Features : 1 / 2.7 2 MP CMOS, ICR
    • Lens : 3.6 mm /6mm
    • Viewing angle : 89.9 / 59.4 Degree
    • IR Distance : 20Meter
      Warranty Information
      Warranty01 Year Warranty
      Description

      Dahua HAC-HFW-1200RP 2MP HDCVI IR Bullet Camera IN BD 

      The Dahua HAC-HFW-1200RP 2MP HDCVI IR Bullet Camera is a high-quality surveillance solution designed to provide clear, detailed video footage for various security needs. Featuring a 2MP sensor, this camera delivers sharp and crisp video images, making it an ideal choice for monitoring both indoor and outdoor areas. The HDCVI technology ensures smooth and real-time video transmission, even over long distances, with minimal latency.

      Equipped with Infrared (IR) LED technology, the HAC-HFW-1200RP ensures excellent night vision performance, delivering clear images even in complete darkness. Its bullet design allows for flexible installation on walls, giving you the ability to monitor a wide range of areas, from driveways to building perimeters.

      Built for durability, the HAC-HFW-1200RP features IP67 weatherproofing, making it suitable for outdoor use in harsh weather conditions, including rain and extreme temperatures. Whether it's day or night, this camera provides consistent, high-quality surveillance to ensure your property remains secure at all times. Additionally, the motion detection feature helps reduce unnecessary footage by recording only when movement is detected, optimizing storage space.

      Buying Suggestions from Dear IT Solution

      For the Dahua HAC-HFW-1200RP 2MP HDCVI IR Bullet Camera, trust Dear IT Solution, your reliable source for top-tier security products in Bangladesh.

      At Dear IT Solution, we offer this camera at the best price in Bangladesh, guaranteeing exceptional value without compromising on quality. With our commitment to providing genuine, high-performance products and excellent customer support, you can enjoy a seamless shopping experience.

      Enhance the security of your property with the Dahua HAC-HFW-1200RP camera. Order today from Dear IT Solution for unbeatable reliability and satisfaction!

      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};