Menu
Your Cart

Fantech Helios Go XD5 USB Type-C Wireless RGB Gaming Mouse

Fantech Helios Go XD5 USB Type-C Wireless RGB Gaming Mouse
Fantech Helios Go XD5 USB Type-C Wireless RGB Gaming Mouse
  • Price: TK 6,450/-
  • Stock: In Stock
  • Model: Helios Go XD5
TK 6,450/-
Ex Tax: TK 6,450/-

Key Features

    • Model: Helios Go XD5
    • Sensor : PixArt PMW3370
    • Resolution: 50-19,000 DPI
    • Buttons: 6, Polling Rate: 1000Hz
    • Backlight: Running RGB with 7 RGB modes
    Specification
    General Feature
    BrandFantech
    ModelHelios Go XD5
    Connection TypeWired/Wireless
    OthersAdjustable LOD: Yes IPS: 400 Acceleration: 50G On-board Memory: Yes Back Cover Material: UV Matte Core Construction: ABS Plastic Shape: Ergonomic Illumination: Running RGB with 7 RGB modes
    Gaming Features
    Button6
    Switch LifecycleKailh GM8.0 80 million clicks
    Mouse Feature
    Resolution50-19,000 DPI
    Polling Rate1000Hz
    Physical Attributes
    ColorBlack
    Dimensions120*64*40mm
    Warranty Information
    Warranty01 Year
    Description

    Fantech Helios Go XD5 USB Type-C Wireless RGB Gaming Mouse

    The Fantech Helios Go XD5 USB Type-C Wireless RGB Gaming Mouse is engineered to provide gamers with an exceptional blend of precision, comfort, and performance. Featuring the PixArt PMW3370 sensor, this mouse delivers remarkable accuracy with 50-19,000 DPI resolution, ensuring smooth and responsive tracking for every move. Whether you're into fast-paced FPS games or tactical strategies, this mouse gives you the edge to stay ahead.

    Equipped with 6 programmable buttons, the Helios Go XD5 allows you to customize your gaming commands for faster, more efficient play. The 1,000Hz polling rate ensures that each click and movement is transmitted with minimal latency, providing a seamless gaming experience with real-time responsiveness.

    Designed for style and functionality, the Fantech Helios Go XD5 features a stunning RGB backlight with 7 dynamic RGB modes, allowing you to personalize your gaming setup with vibrant lighting effects. The mouse is built with USB Type-C connectivity, ensuring a fast and reliable connection whether you're using it in wired or wireless mode.

    With its lightweight design and ergonomic build, the Helios Go XD5 is crafted for extended gaming sessions, ensuring comfort even during intense gaming marathons.

    Buying Suggestion from Dear IT Solution

    Get the Fantech Helios Go XD5 USB Type-C Wireless RGB Gaming Mouse at the best price in Bangladesh from Dear IT Solution. We offer the best quality product insured in Bangladesh, ensuring you get a premium, durable gaming mouse that enhances your gaming performance.Dear IT Solution  to enjoy fast delivery, reliable customer service, and top-quality gaming accessories. Elevate your gaming experience with the Fantech Helios Go XD5 today

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