Menu
Your Cart

Microlab U210 USB 2.1 LED Bluetooth Speaker Black

Microlab U210 USB 2.1 LED Bluetooth Speaker Black
Microlab U210 USB 2.1 LED Bluetooth Speaker Black
  • Price: TK 2,100/-
  • Stock: In Stock
  • Model: U210
TK 2,100/-
Ex Tax: TK 2,100/-

Key Features

    • Model: U210
    • Frequency response: 45 Hz - 18 kHz
    • Output power: 3W X 2 + 5W
    • Signal/Noise Ratio: > 65 dB
    • 3.5mm line in, Bluetooth, TF card, Radio
    Specification
    General Feature
    BrandMicrolab
    ModelU210
    Signal> 65 dB
    Jack3.5mm line in
    Frequency45 Hz - 18 kHz
    Power
    PowerUSB power supply
    Physical Attributes
    DimensionsSatellites Dimension: 81W x 81D x 115H mm Subwoofer Dimension: 272W x 180D x 137H mm
    USBYes
    WiredYes
    Warranty Information
    Warranty01 Year
    Description

    Microlab U210 USB 2.1 LED Bluetooth Speaker Black in bd 

    The Microlab U210 USB 2.1 LED Bluetooth Speaker Black is the ultimate audio solution for users who desire a dynamic and immersive listening experience. With its advanced 2.1 channel configuration, it delivers clear, powerful sound with deep bass and crisp highs, perfect for both casual listening and more intense audio needs like gaming and movie watching. The vibrant LED lighting enhances your audio experience, creating a visually striking effect that matches the energy of your music or game.

    Designed for convenience, the Microlab U210 features Bluetooth connectivity, allowing you to easily pair it with smartphones, tablets, and other Bluetooth-enabled devices. The built-in USB port ensures you can power the speaker quickly and efficiently, while the 3.5mm audio jack offers versatile compatibility with computers, laptops, and more. Whether you’re enjoying a movie, playing your favorite games, or listening to music, the Microlab U210 USB 2.1 LED Bluetooth Speaker Black ensures a premium audio experience every time.

    The Microlab U210 also stands out for its sleek black design, making it a perfect addition to any modern workspace or entertainment setup. Its compact build doesn’t compromise on performance, offering rich, high-quality sound in a portable, space-saving design.

    Buying Suggestions from Dear IT Solution

    For the Microlab U210 USB 2.1 LED Bluetooth Speaker Black, trust Dear IT Solution, your reliable source for premium audio products in Bangladesh.

    At Dear IT Solution, we offer the Microlab U210 USB 2.1 LED Bluetooth Speaker Black at the best price in Bangladesh, ensuring unbeatable value for your money. Our focus on providing genuine, high-quality products guarantees that you are getting a durable, reliable speaker for your entertainment and multimedia needs.

    Enjoy exceptional customer service and a seamless shopping experience at Dear IT Solution. Order the Microlab U210 USB 2.1 LED Bluetooth Speaker Black today, and elevate your sound experience with top-tier performance, innovative design, and a great price.

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