Menu
Your Cart

F&D R27BT Multimedia Bluetooth Speaker

F&D R27BT Multimedia Bluetooth Speaker
F&D R27BT Multimedia Bluetooth Speaker
  • Price: TK 9,450/-
  • Stock: In Stock
  • Model: R27BT
TK 9,450/-
Ex Tax: TK 9,450/-

Key Features

    • Model: R27BT,/li>
    • HiFi sound performance, Full function remote control
    • 1" silk dome tweeter, 4" full-range driver
    • Bluetooth operation range up to 15 meters
    • Bluetooth 4.2 version, Low distortion
    Specification
    General Feature
    BrandF&D
    ModelR27BT
    Signal70 dB
    Drivers4″ full range driver
    Jack3.5-mm mini jack
    FrequencyFrequency Response: 40Hz-20kHz Input Frequency: 50/60 Hz
    Power
    Power50 W
    Physical Attributes
    USBYes
    Weight0.7KG
    Input Connetor3.5mm
    Warranty Information
    Warranty01 Year
    Description

    F&D R27BT Multimedia Bluetooth Speaker in bd 

    The F&D R27BT Multimedia Bluetooth Speaker offers an exceptional audio experience with its powerful 2.1 channel configuration. Featuring a sleek and stylish design, this speaker system is equipped with a subwoofer that delivers deep, resonating bass, while the satellite speakers provide crystal-clear treble for a well-rounded, immersive sound experience. Whether you're listening to music, watching movies, or playing games, the F&D R27BT delivers high-quality sound performance every time.

    With Bluetooth connectivity, the F&D R27BT allows you to wirelessly stream music from smartphones, tablets, and other Bluetooth-enabled devices. In addition to Bluetooth, it supports multiple connectivity options such as USB, AUX, and SD card inputs, making it a versatile audio system for a variety of devices and audio sources.

    Designed for both performance and aesthetics, the F&D R27BT features a modern look with an LED display and intuitive controls for easy operation. The wooden subwoofer enhances sound quality by minimizing distortion and boosting bass output. A remote control is also included, allowing you to adjust volume, bass, and other settings from a distance.

    Buying Suggestions from Dear IT Solution

    For the F&D R27BT Multimedia Bluetooth Speaker, trust Dear IT Solution, your reliable source for premium audio products in Bangladesh.

    At Dear IT Solution, we offer the F&D R27BT Multimedia Bluetooth Speaker at the best price in Bangladesh, ensuring excellent sound quality and unbeatable value. With our commitment to genuine products and outstanding customer service, we guarantee a seamless shopping experience.

    Upgrade your audio setup today with the F&D R27BT Multimedia Bluetooth Speaker, available now at Dear IT Solution. Experience immersive sound, versatile connectivity, and modern design with this top-quality 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};