Menu
Your Cart

Microlab M100 2.1 Multimedia Speaker

Microlab M100 2.1 Multimedia Speaker
Out Of Stock
Microlab M100 2.1 Multimedia Speaker
  • Stock: Out Of Stock
  • Model: M100
TK 2,600/-
Ex Tax: TK 2,600/-

Key Features

    • Model: Microlab M100
    • Frequency response : 40 Hz – 18 kHz
    • Signal/Noise ratio : > 70 dB
    • Separation : > 45 dB
    • Output power : 10 Watt RMS
    Specification
    General Feature
    BrandMicrolab
    ModelM100
    Signal> 70 dB
    DriversTweeter driver type : 2.5″ x 2 Tweeter rated power : 3 Watt 4 ohm Bass driver type : 4″ Bass rated power : 5 Watt 8 ohm
    Jack3.5mm stereo jack
    Frequency40 Hz – 18 kHz
    Power
    PowerOutput power : 10 Watt RMS
    Physical Attributes
    DimensionsSatellites: 90 x 168 x 85 mm
    USBYes
    Input ConnetorInput : 3.5mm stereo jack
    Warranty Information
    Warranty01 Year
    Description

    Microlab M100 2.1 Multimedia Speaker in bd 

    The Microlab M100 2.1 Multimedia Speaker is a powerful audio solution designed to elevate your multimedia experience. Featuring a 2.1 speaker configuration, this speaker system delivers rich and dynamic sound with deep bass, clear mids, and crisp treble, making it perfect for gaming, movies, music, and more. The subwoofer adds an extra layer of depth to your audio, ensuring an immersive experience whether you’re listening to your favorite tracks or watching action-packed films.

    Compact yet powerful, the Microlab M100 is equipped with an easy-to-use control panel for convenient volume and bass adjustments, allowing you to tailor the sound to your preferences. Its sleek design and durable build make it a great addition to any desk or entertainment setup. The system is also compatible with a wide range of devices, including computers, laptops, tablets, and smartphones, providing flexible connectivity options.

    With its simple plug-and-play setup, the Microlab M100 2.1 Multimedia Speaker is user-friendly and ideal for those seeking high-quality sound without the complexity of complicated setups. This speaker system offers exceptional value, delivering outstanding sound at an affordable price point.

    Buying Suggestions from Dear IT Solution

    For the Microlab M100 2.1 Multimedia Speaker, trust Dear IT Solution, your go-to source for top-quality audio products in Bangladesh.

    At Dear IT Solution, we offer the Microlab M100 2.1 Multimedia Speaker at the best price in Bangladesh, ensuring you receive the best value for your money. Our commitment to offering authentic products means you can shop with confidence, knowing you are purchasing a reliable and long-lasting audio system.

    Enjoy a seamless shopping experience with Dear IT Solution, where we prioritize customer satisfaction and product quality. Order the Microlab M100 2.1 Multimedia Speaker today and take your audio experience to the next level with stunning sound quality and unmatched convenience.

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