Overview

The Logitech G923 TRUEFORCE Racing Wheel is a peripheral designed for sim racing enthusiasts seeking a high-fidelity force feedback experience. Released in 2020, it builds upon Logitech's established G29/G920 series by introducing TRUEFORCE, a proprietary force feedback technology developed by Logitech G. This system differentiates itself by integrating directly with in-game physics and audio engines to provide haptic feedback at a higher fidelity than traditional gear-driven force feedback systems Logitech G TRUEFORCE technology page. Instead of relying solely on force feedback effects transmitted through traditional API calls, TRUEFORCE aims to deliver real-time environmental and vehicle dynamics, such as tire traction, road texture, and engine vibrations, directly to the driver's hands.

The G923 is compatible with PC, PlayStation (PS4/PS5 models for PlayStation), and Xbox (Xbox One/Series X|S models for Xbox), offering broad cross-platform support for a range of racing titles. The wheel itself features a brushed metal design, leather stitching, and integrated console controls for seamless navigation within game menus. It includes a responsive 24-point selection dial and progressive brake pedal, which utilizes a new spring design intended to mimic pressure-sensitive braking systems found in actual race cars RTINGS Logitech G923 review. The G923 is positioned as a mid-range racing wheel, offering a balance between performance, build quality, and accessibility for a wide audience, from casual players to dedicated sim racers.

The target audience for the Logitech G923 includes individuals who prioritize immersive feedback and a tactile connection to the virtual racing environment. Its plug-and-play nature and robust clamping system make it suitable for users who may not have dedicated sim racing cockpits but still desire a more authentic experience than a gamepad offers. While it utilizes a gear-driven force feedback mechanism, the TRUEFORCE enhancement is intended to reduce the typical 'notchy' feel associated with such systems by adding micro-haptic details. For users considering an upgrade from older entry-level wheels or entering sim racing for the first time, the G923 provides a comprehensive package with a wheel and a three-pedal set, offering a complete out-of-the-box solution.

The G923 particularly shines in games that have native TRUEFORCE integration, where the full fidelity of its haptic capabilities can be experienced. Titles like Gran Turismo 7, F1 22, and Assetto Corsa Competizione are among those that leverage the technology to varying degrees Logitech G923 product page. This integration allows the wheel to convey subtle nuances such as the rumble of an engine changing RPMs or the precise moment of tire grip loss, which can contribute to quicker reaction times and a more engaging driving experience. Its construction aims for durability and consistent performance, making it a reliable choice for extended gaming sessions. While direct drive wheels offer even higher fidelity and torque, the G923 provides a cost-effective alternative for users who prioritize immersive feedback without the higher investment typically associated with direct drive systems.

Key features

  • TRUEFORCE Force Feedback: Proprietary next-gen force feedback that integrates directly with game physics and audio engines for real-time haptic feedback at 4000 times per second Logitech G TRUEFORCE explanation.
  • Progressive Brake Pedal: Features a new progressive spring that mimics the feel of a pressure-sensitive brake system in real cars, providing more responsive and accurate braking control.
  • Integrated Game Controls: Complete set of PlayStation or Xbox controls (depending on model) built directly into the wheel, including a 24-point selection dial for on-the-fly adjustments.
  • Premium Build Materials: Hand-stitched leather wheel cover, polished metal pedals, and a steel gear shaft contribute to durability and a premium feel.
  • Dual-Motor Force Feedback: Utilizes a gear-driven dual-motor system for robust and responsive force feedback, enhanced with TRUEFORCE for nuanced haptics.
  • Adjustable Pedal Faces: Pedal faces can be repositioned for heel-toe maneuvers and personalized comfort.
  • RPM Indicator Lights: Integrated LED lights display RPM range in supported games, indicating when to shift gears for optimal performance.
  • Wheel Rotation: 900-degree lock-to-lock rotation, allowing for realistic steering in a variety of vehicle types.

Pricing

The Logitech G923 TRUEFORCE Racing Wheel is available as a single hardware purchase, including both the racing wheel and the three-pedal unit. Pricing may vary based on region and retailer.

Product Price (USD, as of 2026-05-08) Notes
Logitech G923 TRUEFORCE Racing Wheel (PC/PS) $399.99 Includes wheel and 3-pedal set. Optimized for PC and PlayStation.
Logitech G923 TRUEFORCE Racing Wheel (PC/Xbox) $399.99 Includes wheel and 3-pedal set. Optimized for PC and Xbox.

For current pricing information, refer to the official Logitech G923 product page.

Common integrations

  • PC Racing Simulators: Automatically recognized by most PC racing titles, including iRacing, Assetto Corsa Competizione, Dirt Rally 2.0, and Forza Motorsport. Configuration often managed via Logitech G HUB software.
  • PlayStation Consoles: Plug-and-play compatibility with PlayStation 4 and PlayStation 5. Supported games include Gran Turismo 7, F1 2023, and WRC Generations.
  • Xbox Consoles: Plug-and-play compatibility with Xbox One, Xbox Series X, and Xbox Series S. Supported games include Forza Horizon 5, F1 2023, and Project CARS 3.
  • Logitech G HUB Software: Used for customizing wheel sensitivity, force feedback strength, button assignments, and LED RPM indicator behavior on PC Logitech G HUB information.

Alternatives

  • Thrustmaster T300RS GT Edition: A belt-driven force feedback wheel offering smoother action and often considered a direct competitor in the mid-range segment.
  • Fanatec CSL Elite / CSL DD: Fanatec offers a modular ecosystem with higher-end belt-driven and entry-level direct drive options, providing greater fidelity and upgrade paths.
  • Moza Racing R5 Bundle: A direct-drive entry-level bundle known for its high-fidelity force feedback and responsive feel, catering to users seeking direct drive performance at a more accessible price point.
  • Logitech G PRO Racing Wheel: Logitech's own higher-end direct drive wheel, offering significantly more torque and fidelity compared to the G923 for dedicated sim racers Logitech G PRO Racing Wheel product details.

Getting started

The Logitech G923 is largely plug-and-play. For PC users, installing Logitech G HUB software is recommended for full customization and profile management. Below is a simplified example of how a game might detect and initialize the wheel, though actual game integration is handled internally by the game engine and its SDKs.

// Pseudocode for a game detecting and initializing the Logitech G923

// 1. Detect connected devices
function detectRacingWheel() {
    console.log("Scanning for racing wheels...");
    // In a real scenario, this would interface with OS/driver APIs
    if (isDeviceConnected("Logitech G923")) {
        console.log("Logitech G923 TRUEFORCE detected.");
        initializeG923();
    } else {
        console.log("Logitech G923 not found. Please ensure it's connected.");
    }
}

// 2. Initialize the wheel and apply default settings
function initializeG923() {
    console.log("Initializing Logitech G923...");
    // Load default force feedback profiles and calibration
    setForceFeedbackStrength(75); // Example: 75% strength
    setWheelRotation(900); // Example: 900 degrees lock-to-lock
    calibratePedals();
    console.log("Logitech G923 initialized successfully.");
    loadGameSpecificProfile("Assetto Corsa Competizione");
}

// 3. Load game-specific profile (often handled by G HUB or in-game settings)
function loadGameSpecificProfile(gameName) {
    console.log(`Loading profile for ${gameName}...`);
    // Apply sensitivity, dead zones, and TRUEFORCE specific settings
    switch (gameName) {
        case "Assetto Corsa Competizione":
            applyACC_Settings();
            break;
        case "Gran Turismo 7":
            applyGT7_Settings();
            break;
        default:
            applyDefaultSimSettings();
    }
    console.log("Game profile applied.");
}

// Call detection on application start
detectRacingWheel();