Overview

The SteelSeries Aerox 3 Wireless is a gaming mouse engineered to prioritize light weight and wireless flexibility. Weighing 68 grams, its design incorporates a perforated shell to achieve this reduced mass. The mouse utilizes SteelSeries' TrueMove Air optical sensor, developed in conjunction with PixArt, offering up to 18,000 CPI (counts per inch) and 400 IPS (inches per second) tracking with 40G acceleration [SteelSeries Aerox 3 Wireless product page]. This sensor configuration aims to provide accurate tracking required for competitive gaming.

Connectivity options include 2.4 GHz wireless via a USB-C dongle for low-latency gaming, and Bluetooth 5.0 for broader compatibility with other devices. The dual-mode wireless functionality allows users to switch between connection types depending on the application. A detachable USB-C Super Mesh cable is included for wired use and charging. The USB-C port is designed for reversible connection, enhancing user convenience.

Internal components include Golden Micro IP54 mechanical switches, which are rated for 80 million clicks and provide resistance against dust and water [SteelSeries Aerox 3 Wireless specifications]. The mouse features a three-zone RGB lighting system which can be customized using the SteelSeries GG software suite, specifically the Engine module. Battery life is stated to be up to 200 hours when connected via Bluetooth and up to 80 hours in 2.4 GHz wireless mode with optimized settings [SteelSeries Aerox 3 Wireless battery life]. A quick charge feature is also present, providing 40 hours of gameplay with a 15-minute charge.

The Aerox 3 Wireless is primarily targeted at gamers who prefer lightweight mice for rapid movements and flick shots in games like first-person shooters (FPS) and MOBAs. Its low weight can reduce fatigue during extended play sessions. The perforated design, while contributing to weight reduction, also exposes internal components which may be a consideration for users in dusty environments. The peripheral is compatible with Windows, macOS, Xbox, and PlayStation systems, providing broad platform support [SteelSeries Aerox 3 Wireless compatibility].

Key features

  • 68g Ultra-Lightweight Design: Features a perforated shell to minimize mass, allowing for quicker and less fatiguing mouse movements during gameplay.
  • TrueMove Air Optical Sensor: A custom optical sensor with up to 18,000 CPI, 400 IPS, and 40G acceleration, designed for precise tracking and responsiveness [SteelSeries Aerox 3 Wireless sensor details].
  • Dual Wireless Connectivity: Offers 2.4 GHz Quantum 2.0 Wireless for low-latency gaming and Bluetooth 5.0 for broader device compatibility and extended battery life [SteelSeries Aerox 3 Wireless connectivity].
  • Golden Micro IP54 Switches: Durable mechanical switches rated for 80 million clicks, providing resistance against dust and water for longevity.
  • Up to 200-Hour Battery Life: Optimized power consumption allows for extended use, with rapid charging capabilities.
  • USB-C Connectivity: Features a detachable Super Mesh USB-C cable for charging and wired play, along with a reversible connector.
  • AquaBarrier Protection: Internal electronics are protected with an IP54 rating against dust, dirt, oil, and splashes [SteelSeries Aerox 3 Wireless durability].
  • SteelSeries GG Software (Engine): Provides customization options for CPI settings, button remapping, macro creation, and RGB lighting effects.
  • 100% PTFE Glide Skates: Pure PTFE material provides smooth movement over mousepads, reducing friction.

Pricing

The SteelSeries Aerox 3 Wireless is available worldwide through SteelSeries' official channels and authorized retailers.

Product Price (USD) As Of Date Source
SteelSeries Aerox 3 Wireless (2022 Edition) $99.99 2026-05-07 SteelSeries Aerox 3 Wireless product page

Common integrations

The SteelSeries Aerox 3 Wireless primarily integrates with the SteelSeries GG software suite, which includes:

  • SteelSeries Engine: For configuring mouse settings such as CPI, button assignments, macros, polling rate, and RGB lighting effects [SteelSeries Engine software page]. This also supports game-specific configurations.
  • Moments: A clip capture and sharing tool, allowing users to record and share gameplay highlights. While not an integration for the mouse itself, it is part of the broader SteelSeries ecosystem that utilizes peripheral input.
  • Sonor: An audio mixer and equalizer, which can be used in conjunction with SteelSeries headsets, although not directly tied to the Aerox 3 Wireless mouse.

Game developers can integrate in-game events with SteelSeries peripheral lighting and tactile feedback using the SteelSeries Engine SDK. This allows for dynamic lighting changes on the mouse based on in-game actions like low health, cooldowns, or ultimate abilities.

Alternatives

Getting started

To begin using the SteelSeries Aerox 3 Wireless, you'll typically connect it via its 2.4 GHz wireless dongle and install the SteelSeries GG software. The software allows for customization of the mouse's settings.

Here's a basic procedure for initial setup and customization:

  1. Charge the Mouse: Connect the Aerox 3 Wireless to your PC using the included USB-C cable to ensure it has sufficient charge.
  2. Connect the Dongle: Insert the 2.4 GHz USB-C wireless dongle into an available USB port on your computer. If your computer only has USB-A ports, use the included extension adapter.
  3. Power On: Switch the power slider on the bottom of the mouse to the "2.4 GHz" position. The mouse should automatically connect to the dongle.
  4. Install SteelSeries GG: Download and install the SteelSeries GG software suite from the official SteelSeries website [SteelSeries GG download page].
  5. Configure Settings: Open the SteelSeries GG software, navigate to the "Engine" section, and select your Aerox 3 Wireless mouse. From here, you can:
    • Adjust CPI levels (e.g., to 400, 800, 1600, 3200 for gaming).
    • Remap buttons.
    • Create and assign macros.
    • Customize the 3-zone RGB lighting effects.
    • Adjust polling rate (e.g., 1000 Hz for competitive play).
    • Check battery status.

For developers interested in integrating game events with SteelSeries peripherals, the SteelSeries Engine SDK provides documentation and tools. An example of a basic C# integration for a simple lighting effect might look like this:

using SteelSeries.Engine.Client;
using SteelSeries.Engine.Event;
using SteelSeries.Engine.Properties;
using System;

public class GameIntegration
{
    private static GameSenseClient _client;
    private static string _gameName = "MY_GAME";

    public static void Main(string[] args)
    {
        _client = new GameSenseClient();
        _client.RegisterGame(_gameName, "My Game Title");

        // Bind an event to a simple color change when it occurs
        _client.BindEvent(_gameName, new BindEventProperties
        {
            EventName = "HEALTH_CRITICAL",
            MinValue = 0,
            MaxValue = 100,
            IconId = 1,
            Handlers = new[]
            {
                new Handler
                {
                    DeviceType = DeviceType.Mouse,
                    Zone = "rgb_zones",
                    Mode = "color",
                    Color = new ColorStatic { Red = 255, Green = 0, Blue = 0 }
                }
            }
        });

        Console.WriteLine($"Game '{_gameName}' registered and event 'HEALTH_CRITICAL' bound.");
        Console.WriteLine("Press any key to send a critical health event...");
        Console.ReadKey();

        // Send a game event to trigger the lighting effect
        _client.SendEvent(_gameName, new GameEvent
        {
            EventName = "HEALTH_CRITICAL",
            Data = new EventData { Value = 10 }
        });

        Console.WriteLine("Event sent. Check your mouse lighting.");
        Console.WriteLine("Press any key to unregister game and exit...");
        Console.ReadKey();

        _client.StopGame(_gameName);
        _client.Dispose();
    }
}

This C# example illustrates registering a game with the SteelSeries Engine, binding an event with a specific lighting handler (setting the mouse's RGB zones to red upon a "HEALTH_CRITICAL" event), and then sending that event. This would require the SteelSeries Engine to be running on the user's system for the integration to function. The SDK primarily supports C# and provides REST API endpoints for communication with the running Engine service.