Menu
Your Cart

TP-Link VIGI C420I 2MP IR Turret IP Camera

TP-Link VIGI C420I 2MP IR Turret IP Camera
TP-Link VIGI C420I 2MP IR Turret IP Camera
  • Stock:
  • Model: VIGI C420I
TK 0/-
Ex Tax: TK 0/-

Key Features

    • Model: VIGI C420I
    • Image Sensor: 1/3” Progressive Scan CMOS
    • Resolution: Max. 2 MP (1920 × 1080) at 25/30 fps.
    • Lens: 2.8mm, Aperture: F2.2, IR Distance: 30 meters
    • Features: PoE, DWDR, 3D DNR, Smart Detection
    Specification
    Camera Info
    BrandDahua
    ModelVIGI C420I
    Image Sensor1/3” Progressive Scan CMOS
    IR Distance30m
    Camera Lens
    Lens TypeFixed Focal Lens
    Focal Length2.8 mm
    Max ApertureF2. 2
    Angle of ViewHorizontal FOV: 88.2°, Vertical FOV: 48.6°, Diagonal FOV: 106.5°
    Display Features
    Interface1 RJ45 10/100M Self-Adaptive Ethernet Port
    Power
    Power SupplyPoE (802.3af/at, class 0)
    Physical Attributes
    Dimensions123 × 123 × 83 mm
    Weight0.19 Kg
    Warranty Information
    Warranty01 Year
    Description

    TP-Link VIGI C420I 2MP IR Turret IP Camera in bd 

    The TP-Link VIGI C420I 2MP IR Turret IP Camera is a professional-grade surveillance solution designed to deliver superior security for your property. With its 2MP high-definition resolution, this camera captures sharp and detailed footage, ensuring that no crucial details are missed.

    This camera features infrared night vision, providing clear visibility even in complete darkness with an effective range of up to 30 meters. The Smart IR technology prevents overexposure in close-range night vision, maintaining balanced and accurate image quality. Its wide-angle lens ensures excellent coverage, making it perfect for monitoring both indoor and outdoor spaces.

    Built with motion detection capabilities, the VIGI C420I alerts you instantly when suspicious activity is detected, helping you stay ahead of potential threats. The camera is equipped with Power over Ethernet (PoE) for easy installation, reducing cable clutter and simplifying deployment.

    The IP67-rated weatherproof design ensures reliable operation in harsh weather conditions, from heavy rain to extreme heat, making it ideal for outdoor surveillance. Additionally, the camera integrates seamlessly with the TP-Link VIGI Security Management System, offering centralized monitoring and control for enhanced convenience.


    Buying Suggestions from Dear IT Solution

    For the TP-Link VIGI C420I 2MP IR Turret IP Camera, trust Dear IT Solution, your reliable tech partner in Bangladesh.

    At Dear IT Solution, we offer this high-performance IP camera at the best price in Bangladesh, guaranteeing authentic products and outstanding customer service. Whether you're securing your home, office, or commercial premises, this camera is a perfect blend of durability, clarity, and efficiency.

    Invest in the TP-Link VIGI C420I 2MP IR Turret IP Camera today. Order now from Dear IT Solution for unmatched value and quality!

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