Menu
Your Cart

Dahua 2MP HAC-T1A21P HDCVI IR Eyeball Camera

Dahua 2MP HAC-T1A21P HDCVI IR Eyeball Camera
Dahua 2MP HAC-T1A21P HDCVI IR Eyeball Camera
  • Price: TK 1,300/-
  • Stock: In Stock
  • Model: HAC-T1A21P
TK 1,300/-
Ex Tax: TK 1,300/-

Key Features

    • MPN: DH-HAC-T1A21P
    • Model: HAC-T1A21P
    • Resolution: 2MP
    • Lens: 3.6mm Fixed
    • IR Distance: 20m
    Specification
    Camera Info
    BrandDahua
    ModelHAC-T1A21P
    Warranty Information
    Warranty01 Warranty
    Description

    Dahua 2MP HAC-T1A21P HDCVI IR Eyeball Camera in bd 

    The Dahua 2MP HAC-T1A21P HDCVI IR Eyeball Camera is an advanced surveillance solution designed for both home and business security needs. This high-definition 2MP camera provides crystal-clear video quality, ensuring you capture every detail. With HDCVI (High Definition Composite Video Interface) technology, this camera delivers excellent video quality over long distances without any loss of signal, providing reliable performance even in complex environments.

    Equipped with powerful IR (Infrared) LEDs, the Dahua HAC-T1A21P offers night vision capabilities up to 20 meters, ensuring your property remains secure 24/7, even in low-light or no-light conditions. The 3.6mm fixed lens provides a wide viewing angle, allowing you to monitor large areas with ease. Additionally, its IP67-rated weatherproof design ensures it operates flawlessly in outdoor environments, making it ideal for both indoor and outdoor surveillance needs.

    This camera supports multiple video formats, including 1080p HD video resolution, and can be easily integrated into existing HDCVI DVR systems. It also features motion detection and smart IR technology, optimizing image quality by adjusting the infrared light based on the distance of objects within the camera’s view.

    Buying Suggestions from Dear IT Solution

    For the Dahua 2MP HAC-T1A21P HDCVI IR Eyeball Camera, look no further than Dear IT Solution, your trusted source for high-quality security solutions in Bangladesh.

    At Dear IT Solution, we offer this premium surveillance camera at the best price in Bangladesh, ensuring excellent value for your security investment. With our commitment to authentic products and top-notch customer service, you can rest assured that you're purchasing from a reliable source.

    Ensure the safety of your property with the Dahua 2MP HAC-T1A21P HDCVI IR Eyeball Camera. Order today from Dear IT Solution for the highest quality and customer 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};