Menu
Your Cart

Logitech M196 Bluetooth Mouse

Logitech M196 Bluetooth Mouse
Logitech M196 Bluetooth Mouse
Logitech M196 Bluetooth Mouse
Logitech M196 Bluetooth Mouse
Logitech M196 Bluetooth Mouse
Logitech M196 Bluetooth Mouse
Logitech M196 Bluetooth Mouse
  • Price: TK 1,100/-
  • Stock: In Stock
  • Model: M196
  • MPN: 910-007460/ 910-007459
TK 1,100/-
Ex Tax: TK 1,100/-

Key Features

    • Model: M196
    • Connection Type: Bluetooth Technology
    • Smooth optical tracking: 1000 DPI
    • Wireless range: 10 m
    • Battery life: 12 months
    Specification
    General Feature
    Tracking MethodSmooth optical tracking
    BrandLogitech
    ModelM196
    DPI1000 DPI
    Button3 (Left/Right-click, Middle click)
    Connectivity
    BluetoothYes
    Physical Attributes
    ColorOff-White/Rose/Graphite
    Dimensions100 mm,Width: 60 mm, Depth: 38 mm
    Weight76 g
    Warranty Information
    Warranty01 Year
    Description

    Logitech M196 Bluetooth Mouse

    The Logitech M196 Bluetooth Mouse is a sleek, efficient, and versatile input device designed for users who value portability and reliable performance. Whether you're working at your desk or on the go, this mouse offers seamless connectivity and precision tracking, making it an ideal companion for various tasks.

    Equipped with Bluetooth connectivity, the Logitech M196 eliminates the need for a USB receiver, freeing up valuable ports on your device. This makes it compatible with a wide range of devices, including laptops, tablets, and smartphones running Windows, macOS, Chrome OS, and Android. Its wireless design provides freedom of movement with a reliable range, ensuring an uninterrupted experience.

    The mouse features a comfortable, ambidextrous design that fits well in both left and right hands, catering to a broad range of users. Its compact size makes it easy to carry in your bag, making it an excellent choice for professionals, students, and travelers. Additionally, the optical tracking technology ensures smooth and precise cursor control on various surfaces, enhancing productivity in any environment.

    Powered by a single AA battery, the Logitech M196 Bluetooth Mouse delivers impressive battery life, allowing you to work for extended periods without the need for frequent replacements. Its sturdy build ensures durability, making it a dependable tool for daily use.

    Buying Suggestions from Dear IT Solution

    For customers in Bangladesh, the Logitech M196 Bluetooth Mouse is available at Dear IT Solution, your trusted destination for quality IT accessories. We offer this mouse at a competitive price, ensuring you get exceptional value for your purchase.

    At Dear IT Solution, we prioritize customer satisfaction by providing genuine products and a hassle-free shopping experience. Our online store is easy to navigate, allowing you to place your order effortlessly and enjoy fast, secure delivery to your doorstep.

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