Menu
Your Cart

Microlab M200 2.1 M-Series Multimedia Speaker

Microlab M200 2.1 M-Series Multimedia Speaker
Out Of Stock
Microlab M200 2.1 M-Series Multimedia Speaker
  • Stock: Out Of Stock
  • Model: M200
TK 4,600/-
Ex Tax: TK 4,600/-

Key Features

    • Model: M200
    • Input: 3.5 mm Stereo Jack
    • Output power: 40 Watt (RMS)
    • Frequency Response: 30 Hz - 20 kHz
    • Power distribution: 12Watt x 2 + 16Watt RMS
    Specification
    General Feature
    BrandMicrolab
    ModelM200
    Signal> 75dB
    DriversTweeter driver: 2,5" x 2 Woofer driver: 5"
    Jack 3.5mm stereo
    Frequency30 Hz - 20 kHz
    Physical Attributes
    DimensionsSatellites: 155W x 195D x 285H mm Subwoofer: 83W x 113D x 153H mm
    WiredYes
    Warranty Information
    Warranty01 Year
    Description

    Microlab M200 2.1 M-Series Multimedia Speaker in bd 

    The Microlab M200 2.1 M-Series Multimedia Speaker is a premium audio solution that brings outstanding sound performance to your home or office setup. With a 2.1 channel configuration, this speaker system delivers powerful bass, detailed mids, and crisp highs, offering a rich and immersive audio experience for music, movies, games, and more.

    The Microlab M200 features a high-performance subwoofer for deep and impactful bass, while the satellite speakers provide balanced and precise sound output. Its elegant design with a matte black finish adds a modern touch to any space, making it both functional and aesthetically pleasing. The convenient control panel lets you adjust volume and bass settings effortlessly, ensuring a personalized listening experience.

    Compatible with a variety of devices, the Microlab M200 2.1 M-Series Multimedia Speaker supports flexible connectivity through its 3.5mm audio input. Whether you're connecting to a PC, laptop, TV, or smartphone, this speaker system guarantees consistent, high-quality audio output.

    Buying Suggestions from Dear IT Solution

    For the Microlab M200 2.1 M-Series Multimedia Speaker, trust Dear IT Solution, your trusted provider of premium multimedia products in Bangladesh.

    At Dear IT Solution, we offer the Microlab M200 2.1 M-Series Multimedia Speaker at the best price in Bangladesh, ensuring exceptional value and guaranteed quality. With our commitment to delivering genuine products and outstanding customer service, you can enjoy a smooth and reliable shopping experience.

    Order the Microlab M200 2.1 M-Series Multimedia Speaker from Dear IT Solution today and elevate your sound experience with top-notch performance, durability, and style.

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