Menu
Your Cart

FANTECH UX1 Hero Ultimate Macro RGB Gaming Mouse

FANTECH UX1 Hero Ultimate Macro RGB Gaming Mouse
FANTECH UX1 Hero Ultimate Macro RGB Gaming Mouse
FANTECH UX1 Hero Ultimate Macro RGB Gaming Mouse
FANTECH UX1 Hero Ultimate Macro RGB Gaming Mouse
FANTECH UX1 Hero Ultimate Macro RGB Gaming Mouse
  • Price: TK 3,550/-
  • Stock: In Stock
  • Model: FANTECH UX1 Hero Ultimate
TK 3,550/-
Ex Tax: TK 3,550/-

Key Features

    • Model: FANTECH UX1 Hero Ultimate
    • 50,000,000 Click lifetime
    • Tracking Method: Optical
    • Acceleration: 50G
    • Macro Gaming Mouse
    Specification
    General Feature
    Mechanical SwitchesYes
    Tracking MethodHero sensor
    BrandFantech
    ModelFANTECH UX1 Hero Ultimate
    Connection Typewired
    Gaming Features
    Button7
    Switch Lifecycle50.000.000 Click Lifetime
    Acceleration50G
    Mouse Feature
    Resolution16,000 DPI
    Number of Keys7 Programmable Button & Controls
    Polling Rate1000Hz
    Optical Sensor16,000 DPI
    Physical Attributes
    ColorBlack
    Dimensions130 * 70 * 40 mm
    Weight0.5 kg
    Warranty Information
    Warranty01 Year
    Description

    FANTECH UX1 Hero Ultimate Macro RGB Gaming Mouse

    The FANTECH UX1 Hero Ultimate Macro RGB Gaming Mouse is designed to take your gaming experience to the next level. Featuring a 50,000,000 click lifetime, this mouse ensures durability for long gaming sessions without compromise. The optical tracking method offers high-precision accuracy, providing you with smooth and responsive gameplay. With an acceleration of up to 50G, the UX1 Hero Ultimate delivers exceptional responsiveness, ensuring that your every movement is reflected on screen with lightning speed.

    This Macro Gaming Mouse allows you to program complex commands with its multiple programmable buttons, giving you the flexibility to execute commands or combinations effortlessly. The RGB lighting adds a vibrant touch to your setup, with customizable effects that match your gaming style. Whether you’re battling it out in fast-paced FPS games or strategizing in MMOs, the FANTECH UX1 Hero Ultimate offers you both precision and comfort for hours of intense gaming.

    Buying Suggestion from Dear IT Solution

    Get the FANTECH UX1 Hero Ultimate Macro RGB Gaming Mouse at the best price in Bangladesh only at Dear IT Solution. Perfect for gamers looking for precision, speed, and style, this mouse is designed to elevate your gaming performance.

    Why Buy from Dear IT Solution?

    50,000,000 click lifetime for long-lasting use
    Optical tracking method for smooth and responsive gameplay
    50G acceleration for high-speed control
    Fully programmable macro buttons to execute custom commands
    RGB lighting for a dynamic gaming experience
    Best price in Bangladesh with reliable shipping and support

    Enhance your gaming setup with the FANTECH UX1 Hero Ultimate Macro RGB Gaming Mouse at Dear IT Solution. Don’t miss out on the chance to take your gaming performance to new heights

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