Menu
Your Cart

Hikvision DS-2CE56D0T-IRPF 2 MP Indoor Fixed Turret Dome Camera

Hikvision DS-2CE56D0T-IRPF 2 MP Indoor Fixed Turret Dome Camera
Hikvision DS-2CE56D0T-IRPF 2 MP Indoor Fixed Turret Dome Camera
  • Price: TK 1,500/-
  • Stock: In Stock
  • Model: Hikvision DS-2CE56D0T-IRPF
TK 1,500/-
Ex Tax: TK 1,500/-

Key Features

    • Model: Hikvision DS-2CE56D0T-IRPF
    • 4 in 1 (4 signals switchable TVI/AHD/CVI/CVBS)
    • 2 MP Turret Camera
    • HD Output: up to 1080p
    • Smart IR: up to 20m distance
    Specification
    Camera Info
    BrandHikvision
    ModelHikvision DS-2CE56D0T-IRPF
    Image Sensor2MP CMOS image sensor
    Electronic Shutter Speed1/25 (1/30) s to 1/50,000 s
    Minimum Illumination0.01 Lux @ (F1.2,AGC ON),0 Lux with IR
    IR Distance20 m IR distance
    Camera Lens
    Lens Type3.6 mm, 2.8 mm, 6 mm fixed lens
    Focal Length103° (2.8 mm), 82.2° (3.6 mm), 54° (6 mm)
    Mount TypeM12
    Recording
    Resolution1920 ×1080
    Power
    Power ConsumptionMax. 4 W
    Power Supply12 VDC±15%
    Physical Attributes
    DimensionsΦ 89.9 mm × 70.1 mm
    Weight250 g
    Warranty Information
    Warranty01 Year
    Description

    Hikvision DS-2CE56D0T-IRPF 2 MP Indoor Fixed Turret Dome Camera in bd 

    The Hikvision DS-2CE56D0T-IRPF 2 MP Indoor Fixed Turret Dome Camera offers exceptional image quality and reliability for indoor surveillance. Featuring a 2-megapixel CMOS sensor, this camera delivers crystal-clear video footage, making it ideal for monitoring homes, offices, and retail spaces.

    Designed with EXIR 2.0 technology, it provides enhanced night vision up to 20 meters, ensuring 24/7 security even in low-light conditions. The fixed lens with a 2.8mm or 3.6mm focal length ensures a wide-angle view for comprehensive coverage.

    This dome camera boasts a durable design, resistant to dust and minor impacts, ensuring long-lasting performance. The HD-TVI technology ensures seamless compatibility with a wide range of DVRs, providing flexibility and ease of integration into your existing security system.


    Buying Suggestions from Dear IT Solution

    Choose the Hikvision DS-2CE56D0T-IRPF 2 MP Indoor Fixed Turret Dome Camera from Dear IT Solution, your trusted source for security solutions in Bangladesh.

    At Dear IT Solution, we offer this high-quality surveillance camera at the best price in Bangladesh, ensuring authentic products and excellent customer support. Whether for personal or professional use, this camera ensures reliable and efficient monitoring.

    Upgrade your indoor security with the Hikvision DS-2CE56D0T-IRPF 2 MP Indoor Fixed Turret Dome Camera. Order now from Dear IT Solution to enjoy unmatched quality and value!

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