Menu
Your Cart

Dahua LM24-B201S 23.8" 100Hz FHD IPS Monitor

Dahua LM24-B201S 23.8" 100Hz FHD IPS Monitor
Dahua LM24-B201S 23.8" 100Hz FHD IPS Monitor
Dahua LM24-B201S 23.8" 100Hz FHD IPS Monitor
Dahua LM24-B201S 23.8" 100Hz FHD IPS Monitor
Dahua LM24-B201S 23.8" 100Hz FHD IPS Monitor
Dahua LM24-B201S 23.8" 100Hz FHD IPS Monitor
Dahua LM24-B201S 23.8" 100Hz FHD IPS Monitor
  • Price: TK 14,800/-
  • Stock: In Stock
  • Model: LM24-B201S
TK 14,800/-
Ex Tax: TK 14,800/-

Key Features

    • Model: LM24-B201S
    • Resolution: FHD (1920 x 1080)
    • Display: IPS, 100Hz, 4ms
    • Ports: 2 x HDMI, 1 x VGA
    • Features: Anti-blue light design, VESA wall mounting
    Specification
    Display Features
    Display Size23.8"
    Display TypeLED
    Panel TypeIPS
    Resolution1920×1080
    Aspect Ratio16:9
    Viewing Angle178°(H)/178°(V)
    Brightness250 cd/㎡(max)
    Contrast Ratio1000:1
    Refresh Rate100Hz
    Response TimeOD 4ms
    Connectivity
    HDMIYes
    VGAYes
    Mechanical Design
    Vesa Wall Mount75x75mm(3.0"x3.0")
    Power
    Power ConsumptionConsumption (Standard): 25W Consumption (Standby): ≤0.5W
    VoltageDC 12V
    Physical Attributes
    Dimensions539.2x320.4x48.5mm (22“x13”x1.9”)
    Weight Net Weight: 2.82kg (6.2lb) Gross Weight: 3.84kg (8.5lb)
    Warranty Information
    Warranty03 Years Warranty
    Description

    Dahua LM24-B201S 23.8" 100Hz FHD IPS Monitor

    The Dahua LM24-B201S is a 23.8-inch Full HD IPS monitor designed to deliver smooth visuals and vibrant colors for both work and entertainment. With a 1920×1080 FHD resolution, this monitor ensures sharp and clear images, making it ideal for multimedia consumption, office work, and casual gaming.

    Featuring a 100Hz refresh rate and a 4ms response time, the LM24-B201S provides fluid motion and minimal screen tearing, enhancing the overall viewing experience. The IPS panel technology ensures accurate color reproduction and wide viewing angles, making it a great choice for professionals and content creators.

    For versatile connectivity, this monitor includes two HDMI ports and one VGA port, allowing seamless connection with multiple devices. Additionally, the anti-blue light design helps reduce eye strain, ensuring comfortable extended usage. The VESA wall mount compatibility offers flexibility for an ergonomic workspace setup.

    Buying Suggestion from Dear IT Solution

    Get the Dahua LM24-B201S 23.8" 100Hz FHD IPS Monitor at the best price in Bangladesh from Dear IT Solution. We ensure the best quality product insured in Bangladesh, providing a high-performance display for various needs.

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