Overview

The Lamzu Atlantis Mini Pro is a wireless gaming mouse developed by Lamzu, a company founded in 2022 with a specific focus on high-performance gaming peripherals. This model targets competitive FPS (First-Person Shooter) gamers who prioritize a lightweight design, precise tracking, and low latency. Weighing approximately 49 grams, the Atlantis Mini Pro is among the lighter wireless mice available, intended to reduce fatigue during extended gaming sessions and facilitate rapid, precise movements. Its symmetrical shape caters to various grip styles, including claw and fingertip grips, particularly for users with small to medium-sized hands.

The Atlantis Mini Pro integrates a PixArt PAW3395 optical sensor, a component frequently used in high-end gaming mice for its tracking accuracy and responsiveness across various surfaces. This sensor supports resolutions up to 26,000 DPI, though competitive players often use significantly lower settings for greater control. A key technical feature is its support for a 4000 Hz polling rate when paired with a compatible 4K Hz dongle, sold separately. A higher polling rate, such as 4000 Hz, means the mouse reports its position to the computer 4000 times per second, potentially reducing input lag compared to standard 1000 Hz mice. This can translate to a marginal but measurable improvement in cursor smoothness and responsiveness, as detailed in extensive mouse polling rate analysis on sites like RTINGS mouse tracking latency tests.

The mouse's internal architecture emphasizes reliability and consistency. It uses Huano mechanical switches for the main left and right click buttons, designed for a tactile response and durability. The scroll wheel also incorporates a segmented encoder for precise scrolling actions, important for weapon switching or utility selection in games. Powering the wireless functionality is a 300mAh battery, providing an estimated 70 hours of use at 1000 Hz polling, a figure that decreases when operating at higher polling rates like 4000 Hz due to increased data transmission. The Atlantis Mini Pro is designed as a plug-and-play device, with customization options available through Lamzu's proprietary software, allowing users to adjust DPI, polling rate, button assignments, and lift-off distance.

Lamzu's approach with the Atlantis Mini Pro aligns with the current trend in competitive gaming peripherals towards ultra-lightweight designs and high polling rates. It is positioned as a tool for serious gamers seeking to minimize hardware-induced latency and maximize control during critical in-game moments. Its minimalist design, coupled with advanced internal components, reflects a focus on core performance rather than extensive aesthetic customization or additional programmable features often found in more generalized gaming mice.

Key features

  • 49-gram Lightweight Design: Engineered to reduce hand fatigue and enable quicker, more fluid mouse movements during competitive play. This low mass contributes to the overall maneuverability of the peripheral, a critical factor for fast-paced FPS titles.
  • PixArt PAW3395 Sensor: Integrates a high-performance optical sensor capable of up to 26,000 DPI, offering precise 1:1 tracking and minimal deviation across a range of surfaces. This sensor is a standard in top-tier gaming mice, ensuring consistent performance.
  • 4000 Hz Polling Rate Support: When paired with an optional 4K Hz wireless dongle, the mouse can report its position to the PC 4000 times per second, potentially reducing perceived input lag and improving cursor smoothness, as documented by Tom's Hardware's polling rate explanation.
  • Symmetrical Ergonomics: Features a symmetrical chassis design, accommodating both right and left-handed users and supporting various grip styles including palm, claw, and fingertip, particularly effective for small to medium hand sizes.
  • Huano Mechanical Switches: Equipped with durable Huano switches for the main left and right click buttons, providing a tactile and consistent click feel with a specified lifespan.
  • Wireless 2.4 GHz Connectivity: Utilizes a stable 2.4 GHz wireless connection, minimizing latency and offering freedom of movement without cable drag.
  • 300mAh Battery: Houses a rechargeable 300mAh battery, delivering up to 70 hours of usage at a 1000 Hz polling rate, with runtimes decreasing at higher polling rates.
  • Customization Software: Provides access to proprietary software for adjusting DPI stages, polling rate, lift-off distance, button assignments, and macro creation.

Pricing

Model Price (USD) As of Date Source
Lamzu Atlantis Mini Pro ~$99.99 2026-05-01 Lamzu Official Website
Lamzu 4K Hz Dongle (Optional) ~$20.00 2026-05-01 Lamzu Official Website

Common integrations

Lamzu focuses on hardware manufacturing, and the Atlantis Mini Pro does not offer public APIs or SDKs for direct developer integrations. Its 'integration' primarily involves compatibility with standard operating systems and gaming platforms:

  • Windows OS: Functions as a standard USB HID (Human Interface Device) when connected, requiring no special drivers beyond what Windows provides. Customization software is available for Windows.
  • macOS: Basic functionality is supported as a standard mouse. Customization software may have limited or no support on macOS, depending on version compatibility.
  • Linux: Basic functionality is typically available out-of-the-box as a generic USB mouse. Advanced customization through Lamzu software is generally not supported.
  • Game Consoles (e.g., PlayStation, Xbox): Limited or no official support for advanced features. Basic mouse functionality may work in games that support mouse and keyboard input.

Alternatives

  • Logitech G Pro X Superlight 2: A popular, lightweight wireless mouse with a similar competitive focus, offering high performance and a slightly different ergonomic profile.
  • Razer Viper V2 Pro: Another ultra-lightweight wireless mouse known for its optical switches, high polling rate, and symmetrical design, often compared directly to the Atlantis Mini Pro.
  • Glorious Model O 2 Wireless: Provides a lightweight, perforated shell design with wireless connectivity, targeting a similar segment of gamers looking for high performance at a competitive price.
  • Pulsar X2V2 Mini: A direct competitor offering a similar weight class and sensor, also designed with a symmetrical shape for competitive FPS play.

Getting started

The Lamzu Atlantis Mini Pro is a plug-and-play device for basic functionality. For advanced configuration, users interact with Lamzu's proprietary software. There is no programming interface for the mouse itself. To illustrate the setup process for a typical gaming peripheral, consider a basic script to check for a connected USB HID device (pseudocode for a hypothetical Python environment, as direct mouse API access is OS-dependent and not Lamzu-specific):

import usb.core
import usb.util

# Vendor ID and Product ID for a generic gaming mouse (example values)
# For actual Lamzu Atlantis Mini Pro, specific VIDs/PIDs would be needed
# These are illustrative and not directly tied to Lamzu's specific device IDs.
GENERIC_MOUSE_VID = 0x046D # Example Logitech VID
GENERIC_MOUSE_PID = 0xC077 # Example Logitech G203 PID

def find_gaming_mouse(vendor_id, product_id):
    # Find the device
    dev = usb.core.find(idVendor=vendor_id, idProduct=product_id)
    
    if dev is None:
        print(f"Device with VID {hex(vendor_id)} and PID {hex(product_id)} not found.")
        return None
    else:
        print(f"Found device: {dev.product} (Vendor: {dev.manufacturer})")
        print(f"Bus: {dev.bus}, Address: {dev.address}")
        # Optional: Detach kernel driver if active. Crucial for some USB interactions.
        # if dev.is_kernel_driver_active(0):
        #     try:
        #         dev.detach_kernel_driver(0)
        #         print("Kernel driver detached.")
        #     except usb.core.USBError as e:
        #         print(f"Could not detach kernel driver: {e}")
        
        # Set the active configuration. Needed before claiming interfaces.
        # try:
        #     dev.set_configuration()
        # except usb.core.USBError as e:
        #     print(f"Could not set configuration: {e}")
            
        return dev

if __name__ == "__main__":
    print("Attempting to find a generic gaming mouse...")
    mouse_device = find_gaming_mouse(GENERIC_MOUSE_VID, GENERIC_MOUSE_PID)
    
    if mouse_device:
        print("Mouse device successfully identified and ready for interaction (if applicable).")
        # In a real scenario, further interaction would involve claiming interfaces
        # and reading/writing endpoints, which is OS-specific and complex for HID.
        # For Lamzu, this level of programmatic control is not publicly exposed.
    else:
        print("No generic gaming mouse found. Ensure it's connected and USB IDs are correct.")

This pseudocode demonstrates how a developer might programmatically check for a USB device. However, for configuring the Lamzu Atlantis Mini Pro, users will download the Lamzu configuration software directly from the manufacturer's website. This application provides a graphical user interface (GUI) for all settings, eliminating the need for developer-level interaction with the mouse's firmware or USB interface.