Menu
Your Cart

Dahua DHI-LM24-B201S-B3 24" Full HD IPS LED Monitor

Dahua DHI-LM24-B201S-B3 24" Full HD IPS LED Monitor
Dahua DHI-LM24-B201S-B3 24" Full HD IPS LED Monitor
  • Price: TK 14,800/-
  • Stock: In Stock
  • Model: DHI-LM24-B201S-B3
TK 14,800/-
Ex Tax: TK 14,800/-

Key Features

    • Model: DHI-LM24-B201S-B3
    • Resolution: FHD (1920 x 1080)
    • Display: IPS, 50-60Hz, 4ms
    • Ports: HDMI, Display Port
    • Features: Anti-blue light design, VESA wall mounting
    Specification
    Display Features
    Display Size24"
    Display TypeLED
    Panel TypeIPS
    ResolutionFHD (1920x1080)
    Aspect Ratio16:9
    Viewing Angle178°(H)/178°(V)
    Contrast Ratio1000:1
    Refresh Rate50-60Hz
    Response Time4ms
    Connectivity
    HDMI1xHDMI
    Mechanical Design
    Vesa Wall Mount75x75mm
    Warranty Information
    Warranty03 Years
    Description

    Dahua DHI-LM24-B201S-B3 24" Full HD IPS LED Monitor

    The Dahua DHI-LM24-B201S-B3 is a 24-inch Full HD IPS LED monitor designed for clear visuals and comfortable viewing. With an FHD (1920×1080) resolution, it delivers sharp images and vibrant colors, making it ideal for both work and entertainment.

    Featuring an IPS panel with a 50-60Hz refresh rate and a 4ms response time, this monitor ensures smooth visuals and minimal motion blur. The anti-blue light design helps reduce eye strain, making it perfect for long hours of usage.

    Equipped with HDMI and DisplayPort, the DHI-LM24-B201S-B3 offers flexible connectivity options for PCs, laptops, and multimedia devices. It also supports VESA wall mounting, allowing for an ergonomic and space-saving setup.

    Buying Suggestion from Dear IT Solution

    Get the Dahua DHI-LM24-B201S-B3 24" Full HD IPS LED Monitor at the best price in Bangladesh from Dear IT Solution. We ensure the best quality product insured in Bangladesh, offering a reliable display for work and entertainment.

    Order now from Dear IT Solution to enjoy fast delivery, excellent customer service, and premium-quality monitors. Upgrade your workspace with the Dahua DHI-LM24-B201S-B3 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};