Menu
Your Cart

A4TECH FB2535C Wireless Keyboard Mouse Combo

A4TECH FB2535C Wireless Keyboard Mouse Combo
A4TECH FB2535C Wireless Keyboard Mouse Combo
A4TECH FB2535C Wireless Keyboard Mouse Combo
A4TECH FB2535C Wireless Keyboard Mouse Combo
A4TECH FB2535C Wireless Keyboard Mouse Combo
  • Price: TK 3,090/-
  • Stock: In Stock
  • Model: FB2535C
TK 3,090/-
Ex Tax: TK 3,090/-

Key Features

    • Brand: A4ech
    • Model:FB2535C
    • Type: Bluetooth / 2.4G
    • Battery Life: about 650H
    • Warranty: 1 Year
Specification
General Feature
BrandA4Tech
ModelFB2535C
TypeBluetooth / 2.4G
Frequency2.4G
Connectivity
Operating Range 5~10 M
Technical Info
ReceiverNano USB Receiver
Keyboard Feature
Battery1 AA Alkaline Battery
Mouse Feature
Resolution1200-1600-2000-2400
Report Rate125Hz
SensorOptical
Buttons No6
Mouse Dimension105 x 70 x 42
Mouse Weight91 g
Warranty Information
Warranty1 Year
Description

A4TECH Fstyler FB2535C Keyboard Mouse Combo In BD


The A4TECH Fstyler FB2535C Bluetooth & 2.4G Wireless Keyboard Mouse Combo is a versatile combo set designed for users who want seamless connectivity and efficient multitasking. This combo allows you to switch between multiple devices effortlessly using both Bluetooth and 2.4GHz wireless connections. Whether you're working on a desktop, laptop, tablet, or even a smartphone, the FB2535C combo provides the freedom and flexibility to stay productive.

The keyboard and mouse both feature a modern, sleek design that ensures comfort during prolonged use. The Bangla key layout on the keyboard is an added bonus for users who frequently type in both English and Bangla, making it an ideal choice for bilingual professionals and students.


Features of A4TECH Fstyler FB2535C Keyboard Mouse Combo

Dual Connectivity (Bluetooth & 2.4GHz Wireless): Connect to multiple devices using Bluetooth or the 2.4GHz wireless connection with a stable and reliable range.
Bangla Key Support: The keyboard includes Bangla keycaps for easy and smooth typing in both Bangla and English.
Ergonomic Design: The keyboard and mouse are ergonomically designed for comfortable usage over long periods, reducing strain on your hands and wrists.
Multi-Device Switching: Easily switch between devices with the push of a button, making this combo perfect for multitaskers who use different platforms.
Quiet Keys and Mouse Clicks: Enjoy a noise-free working environment with quiet keystrokes and mouse clicks.
Energy Efficient: Long-lasting battery life for both the keyboard and mouse ensures uninterrupted work.
Plug and Play: Easy setup with no drivers required, offering an instant, hassle-free user experience.



Why Buy A4TECH Fstyler FB2535C from Dear IT Solution

At Dear IT Solution, we provide the A4TECH Fstyler FB2535C Bluetooth & 2.4G Wireless Keyboard Mouse Combo at the best price in Bangladesh. With guaranteed genuine and original products, you can shop confidently knowing you are getting best quality products insured in Bangladesh. Whether you visit our store or place an order online, we ensure you receive authentic products at competitive prices.



Maintenance Tips

Regular Cleaning: Clean your keyboard and mouse regularly to prevent dust buildup which can affect performance. Use a soft cloth or air blower to remove dust and debris.
Battery Maintenance: Replace the batteries when needed or charge the combo as per the manufacturer's guidelines to ensure long battery life.
Safe Storage: Store your combo set in a cool, dry place when not in use to prevent damage from humidity and dust.




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