Menu
Your Cart

Dahua LM22-B201S 21.45" IPS 100Hz FHD Monitor

Dahua LM22-B201S 21.45" IPS 100Hz FHD Monitor
Dahua LM22-B201S 21.45" IPS 100Hz FHD Monitor
Dahua LM22-B201S 21.45" IPS 100Hz FHD Monitor
Dahua LM22-B201S 21.45" IPS 100Hz FHD Monitor
Dahua LM22-B201S 21.45" IPS 100Hz FHD Monitor
Dahua LM22-B201S 21.45" IPS 100Hz FHD Monitor
Dahua LM22-B201S 21.45" IPS 100Hz FHD Monitor
  • Price: TK 10,400/-
  • Stock: In Stock
  • Model: LM22-B201S
TK 10,400/-
Ex Tax: TK 10,400/-

Key Features

    • Model: LM22-B201S
    • Resolution: FHD (1920×1080)
    • Display: IPS, 100Hz, OD 4ms
    • Ports: 1x HDMI, 1x VGA
    • Features: Built-in 2x 1W Speaker
    Specification
    Display Features
    Display Size21.45"
    Display TypeLED Backlit Display
    Panel TypeIPS
    ResolutionFHD (1920×1080)
    Aspect Ratio16:9
    Viewing Angle178°(H)/178°(V)
    Brightness250 cd/㎡(max)
    Contrast Ratio3000:1
    Refresh Rate100Hz (max)
    Response TimeOD 4ms
    Connectivity
    HDMIHDMI×1
    VGAVGA×1
    Mechanical Design
    Vesa Wall Mount75x75mm(3.0"x3.0"
    Power
    Power Consumption22W (Standard) ≤0.5W (Standby)
    Physical Attributes
    ColorBlack
    Dimensions492.7x284.0x48.4mm (20“x11.2”x1.9”)
    Weight2.18kg (4.8lb)
    Warranty Information
    Warranty03 Years Warranty
    Description

    Dahua LM22-B201S 21.45" IPS 100Hz FHD Monitor

    The Dahua LM22-B201S is a 21.45-inch Full HD IPS monitor designed for both work and entertainment, offering smooth visuals and crisp image quality. With a 1920×1080 resolution, this monitor ensures sharp and vibrant displays, making it ideal for everyday computing, multimedia, and casual gaming.

    Featuring a 100Hz refresh rate and a 4ms response time, the LM22-B201S delivers fluid motion and reduced ghosting, ensuring a comfortable viewing experience. The IPS panel provides wide viewing angles and accurate color reproduction, making it great for professional and casual use.

    Additionally, this monitor comes with built-in 2x 1W speakers, eliminating the need for external speakers in everyday tasks. For connectivity, it includes 1x HDMI and 1x VGA, ensuring compatibility with various devices.

    Buying Suggestion from Dear IT Solution

    Get the Dahua LM22-B201S 21.45" IPS 100Hz FHD Monitor at the best price in Bangladesh from Dear IT Solution. We ensure the best quality product insured in Bangladesh, offering a reliable and feature-packed monitor for diverse needs.

    Order now from Dear IT Solution to enjoy fast delivery, excellent customer service, and premium-quality monitors. Upgrade your workspace with the Dahua LM22-B201S today

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