Overview

The Logitech G915 TKL Lightspeed is a tenkeyless (TKL) wireless mechanical gaming keyboard, part of Logitech G's premium peripheral line. It is characterized by its low-profile GL mechanical switches, which are available in tactile, linear, and clicky variants, designed to offer a similar actuation feel to full-height switches but with a shorter travel distance and overall height. This design contributes to the keyboard's slim profile, measuring 22 mm at its thickest point according to RTINGS measurements. The TKL form factor eliminates the numeric keypad, reducing the keyboard's footprint and allowing for more mouse movement space, which is often preferred by competitive gamers as noted by ProSettings.

Connectivity is handled by Logitech's proprietary Lightspeed wireless technology, operating at a 1ms report rate, which aims to provide a wired-like performance for gaming applications as described by Logitech G. In addition to Lightspeed, the G915 TKL also supports Bluetooth connectivity, offering versatility for use with multiple devices or in scenarios where a USB dongle is not practical. The keyboard features per-key RGB lighting, customizable through Logitech G HUB software, allowing users to synchronize lighting effects with other Logitech G peripherals.

Targeted at competitive gamers and users seeking a high-performance, compact, and aesthetically minimal keyboard, the G915 TKL integrates a durable aluminum alloy top plate for structural rigidity. Its low-profile design and wireless capabilities make it suitable for setups prioritizing a clean desk aesthetic without sacrificing mechanical switch performance. Battery life is rated at up to 40 hours with full RGB lighting activated per Logitech G specifications, extending significantly when RGB is disabled.

Key features

  • Lightspeed Wireless Technology: Offers a 1ms report rate for low-latency gaming performance, designed to be comparable to wired connections as detailed by Logitech G.
  • Low-Profile GL Mechanical Switches: Available in GL Tactile, GL Linear, and GL Clicky variants, providing mechanical switch feel with a reduced height and actuation distance.
  • Tenkeyless (TKL) Form Factor: Removes the numeric keypad to save desk space and improve ergonomics for mouse movement, a common preference in gaming setups.
  • Aircraft-Grade Aluminum Alloy Top Plate: Provides structural integrity and a premium finish, contributing to the keyboard's durability.
  • LIGHTSYNC RGB Lighting: Customizable per-key RGB illumination with approximately 16.8 million colors, synchronizable with other Logitech G devices via G HUB software according to Logitech G.
  • Dedicated Media Controls: Includes a volume roller and media playback buttons for quick audio adjustments without alt-tabbing.
  • Programmable G-Keys: Five dedicated G-keys on the full-size G915, and F-keys on the TKL variant, can be programmed for macros and custom commands via G HUB software.
  • Bluetooth Connectivity: Allows for connection to multiple devices beyond the Lightspeed USB receiver, enhancing versatility.

Pricing

The Logitech G915 TKL Lightspeed Wireless RGB Mechanical Gaming Keyboard is positioned as a premium wireless gaming peripheral. Pricing may vary based on retailer and region.

Product MSRP (USD) as of 2026-05-07 Notes
Logitech G915 TKL Lightspeed $229.99 Often available at discounted prices from various retailers. See Logitech G product page.

Common integrations

The Logitech G915 TKL Lightspeed primarily integrates with Logitech's own ecosystem and software for customization and management.

  • Logitech G HUB Software: The central application for customizing RGB lighting, programming G-keys (F-keys on TKL), creating macros, and managing profiles. This software also allows synchronization of LIGHTSYNC RGB effects across compatible Logitech G peripherals as specified by Logitech G.
  • OBS Studio: Through G HUB, specific keybinds or macros can be configured to control OBS Studio functions, such as starting/stopping streams, muting microphones, or switching scenes, benefiting streamers and content creators.
  • Discord: G-keys can be programmed to manage Discord functions like push-to-talk, muting/unmuting, or server navigation.

Alternatives

  • Razer BlackWidow V3 Mini HyperSpeed: A 65% wireless mechanical keyboard offering Razer HyperSpeed Wireless technology and various Razer mechanical switch options. Razer product page.
  • Corsair K70 RGB TKL Champion Series: A wired TKL keyboard featuring Corsair OPX optical-mechanical switches, designed for competitive play with an 8,000 Hz polling rate. Corsair product page.
  • SteelSeries Apex Pro Mini Wireless: A 60% wireless keyboard featuring OmniPoint 2.0 adjustable mechanical switches, allowing for custom actuation points. SteelSeries product page.

Getting started

To begin using the Logitech G915 TKL Lightspeed, follow these steps to connect and configure your keyboard.

  1. Charge the Keyboard: Connect the included micro-USB cable to the keyboard and a power source. Although it can be used while charging, a full charge is recommended for optimal wireless performance.
  2. Choose Connectivity Method:
    • Lightspeed Wireless: Plug the Lightspeed USB receiver into an available USB port on your computer. The keyboard should automatically connect.
    • Bluetooth: Press and hold the Bluetooth button on the keyboard until the LED blinks rapidly. On your device, navigate to Bluetooth settings and select 'G915 TKL' to pair.
  3. Install Logitech G HUB: Download and install the Logitech G HUB software from the official Logitech G website. This software is essential for customizing lighting, programming keys, and updating firmware.
  4. Customize Settings: Open G HUB. Select your G915 TKL keyboard. From here, you can:
    • Adjust LIGHTSYNC RGB lighting effects and colors.
    • Assign macros or commands to the F-keys (F1-F12), which can function as G-keys.
    • Create different profiles for specific games or applications.
    • Check battery status and update firmware.
  5. Start Gaming: Once configured, the keyboard is ready for use in gaming or productivity tasks.
# Example: Basic Python script to simulate a keypress (requires external library, e.g., pynput)
# This demonstrates programmatic interaction, not G HUB specific macro creation.

from pynput.keyboard import Key, Controller
import time

keyboard = Controller()

def perform_macro():
    print("Executing macro: Ctrl+C then Ctrl+V")
    # Press and release Ctrl+C
    keyboard.press(Key.ctrl)
    keyboard.press('c')
    keyboard.release('c')
    keyboard.release(Key.ctrl)
    time.sleep(0.1) # Small delay to ensure action registers

    # Press and release Ctrl+V
    keyboard.press(Key.ctrl)
    keyboard.press('v')
    keyboard.release('v')
    keyboard.release(Key.ctrl)
    print("Macro complete.")

if __name__ == "__main__":
    print("Starting macro simulation in 3 seconds...")
    time.sleep(3)
    perform_macro()