Menu
Your Cart

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

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

Key Features

    • Model: Helios Go XD5
    • Sensor : PixArt PMW3370
    • Buttons: 6, Polling Rate: 1000Hz
    • Resolution: 50-19,000 DPI
    • Backlight: Running RGB with 7 RGB modes
    Specification
    General Feature
    BrandFantech
    ModelHelios Go XD5
    Connection TypeWired/Wireless
    OthersIPS: 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
    Button 6
    Switch LifecycleKailh GM8.0 80 million clicks
    Power
    Battery LifeUp to 40 Hours of Battery Life
    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 Space Edition

    The Fantech Helios Go XD5 USB Type-C Wireless RGB Gaming Mouse Space Edition is designed to deliver unparalleled gaming performance and style. Featuring the PixArt PMW3370 sensor, this mouse offers a high-precision 50-19,000 DPI resolution, giving you exceptional accuracy and responsiveness in all gaming scenarios, from fast-paced shooters to strategic RPGs.

    With 6 programmable buttons, the Helios Go XD5 lets you customize your commands to streamline gameplay and gain a competitive advantage. The 1,000Hz polling rate ensures that every click and movement is registered with minimal latency, making it ideal for competitive gaming.

    The Space Edition mouse comes with a stunning RGB backlight system, featuring 7 dynamic RGB modes that allow you to personalize your gaming setup with vibrant lighting. Whether you're playing in low light or showcasing your gaming rig, the backlight adds a touch of style and immersion.

    Built with USB Type-C connectivity, the Helios Go XD5 provides a fast and reliable connection in both wireless and wired modes, ensuring you stay connected without interruption. Its ergonomic design ensures comfort for long gaming sessions, reducing fatigue and enhancing your overall gaming experience.

    Buying Suggestion from Dear IT Solution

    Get the Fantech Helios Go XD5 USB Type-C Wireless RGB Gaming Mouse Space Edition at the best price in Bangladesh from Dear IT Solution. We provide the best quality product insured in Bangladesh, offering reliable, high-performance gaming mice for gamers of all levels.

    Order now from Dear IT Solution to enjoy fast delivery, superior customer service, and premium-quality gaming accessories. Upgrade your gaming setup with the Fantech Helios Go XD5 Space Edition 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};