Menu
Your Cart

F&D A111X 2.1 Channel Multimedia Bluetooth Speakers

F&D A111X 2.1 Channel Multimedia Bluetooth Speakers
F&D A111X 2.1 Channel Multimedia Bluetooth Speakers
  • Price: TK 5,200/-
  • Stock: In Stock
  • Model: A111X
TK 5,200/-
Ex Tax: TK 5,200/-

Key Features

    • Model: A111X
    • Frequency: 120Hz~20kHz
    • Subwoofer: 13W
    • Power: AC 220-240V~50/60HZ
    Specification
    General Feature
    BrandF&D
    ModelA111X
    Signal60
    FrequencySubwoofer Frequency response:30Hz-130Hz Satellite Frequency response: 135Hz-20kHz
    Power
    Power15W Satellite 3W.2 - Subwoofer: 15W
    Physical Attributes
    Dimensions35.7 x 25.4 x 35.7 cm
    USBUSB reader supports MP3/WMA dual formats decoding
    Warranty Information
    Warranty01 Year
    Description

    F&D A111X 2.1 Channel Multimedia Bluetooth Speakers IN  BD

    The F&D A111X 2.1 Channel Multimedia Bluetooth Speakers is a perfect blend of power, style, and functionality, designed to transform your audio experience. This speaker system features a robust 2.1 channel configuration, delivering deep bass through its high-performance subwoofer and clear, vibrant sound through its satellite speakers. Whether you're listening to music, watching movies, or gaming, the F&D A111X ensures an immersive and balanced audio experience.

    The built-in Bluetooth technology enables seamless wireless streaming from your smartphone, tablet, or other Bluetooth-enabled devices, offering convenience and flexibility. In addition to Bluetooth, the F&D A111X supports USB and AUX inputs, making it compatible with various audio sources for versatile usage.

    Its elegant and compact design enhances any space, while the wooden subwoofer cabinet ensures distortion-free sound and enriched bass output. The included remote control makes it easy to adjust volume, bass, and other settings from a distance, giving you complete control over your audio setup.

    Buying Suggestions from Dear IT Solution

    For the F&D A111X 2.1 Channel Multimedia Bluetooth Speakers, choose Dear IT Solution, your trusted provider of premium audio products in Bangladesh.

    At Dear IT Solution, we offer the F&D A111X 2.1 Channel Multimedia Bluetooth Speakers at the best price in Bangladesh, ensuring exceptional quality and value. Our dedication to genuine products and top-notch customer service guarantees a seamless and satisfying shopping experience.

    Upgrade your home audio system today with the F&D A111X 2.1 Channel Multimedia Bluetooth Speakers, available now at Dear IT Solution. Enjoy superior sound quality, versatile connectivity, and reliable performance with this affordable yet powerful speaker system.

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