Hid Vid-1ea7 Amp-pid-0066 Amp-rev-0200 Amp-mi-00 May 2026

This long string is nothing but a technical fingerprint of a generic USB gamepad from Shenzhen E-Yozz, revision 2.0, using its first input interface. While seeing it in logs might feel alarming, it rarely indicates a serious problem. Most issues are solved by reinstalling the default HID game controller driver, adjusting power settings, or resetting the device.

If you find this article while debugging a “Device descriptor request failed” error, know that the problem is likely USB host controller drivers, not the device itself. Try a different PC to confirm.

For retro gamers, emulation fans, or budget PC gamers using a 1ea7:0066 controller, the device offers decent functionality once properly recognized. Keep this reference handy the next time you dig into Device Manager’s Hardware Ids property page.


Need further help? Post your Device Manager screenshot and the exact Hardware Ids string to the r/techsupport subreddit, referencing this article.

The hardware ID HID\VID_1EA7&PID_0066&REV_0200&MI_00 identifies a Mediatrack Edge Mini Keyboard

. This device is manufactured by SHARKOON Technologies GmbH, a company known for gaming peripherals and PC components. Breakdown of the Hardware ID

HID: Indicates it is a Human Interface Device, a class of computer peripherals that interact directly with people (like keyboards, mice, or game controllers). VID_1EA7 : The Vendor ID assigned to SHARKOON Technologies GmbH. PID_0066: The Product ID specifically for the Mediatrack Edge Mini Keyboard .

REV_0200: The Revision number, which indicates the specific firmware or hardware version of this particular unit.

MI_00: The Interface number, used for multi-function devices to distinguish between different logical components (like a keyboard that also has media keys or a built-in touchpad). Usage and Troubleshooting Mediatrack Edge

is typically a compact, wireless keyboard designed for home theater PCs (HTPC) or media centers.

If you are seeing this ID and the device is not working properly, you can manage it using the Windows Device Manager: Right-click the Start button and select Device Manager.

Look for the device under Human Interface Devices or Keyboards.

Right-click the entry and select Properties to check the status or Update driver if needed. USB 1EA7:0066 - Mediatrack Edge Mini Keyboard - DeviceHunt hid vid-1ea7 amp-pid-0066 amp-rev-0200 amp-mi-00

This device identifier refers to a USB Wireless Receiver (dongle), typically used for a generic 2.4GHz wireless mouse or a mini keyboard. 🛠️ Device Identification

Vendor ID (VID) 1EA7: Sharkoon Technologies GmbH (often used by generic Chinese manufacturers like Semitek).

Product ID (PID) 0066: Commonly identified as the Mediatrack Edge Mini Keyboard or a generic 2.4GHz Mouse receiver.

MI_00: Indicates "Multiple Interface 00," showing the device has multiple functions (e.g., keyboard + mouse/touchpad combined). 🔍 Common Issues & Solutions

If you are seeing this code in a system report (like a Windows Power Efficiency Report or Linux lsusb), it usually points to one of the following: 🔋 Power Management Issues

This device often appears in Windows Power Efficiency Reports because it prevents the system from entering a low-power "Selective Suspend" state.

Symptom: Your laptop battery drains faster, or the laptop won't stay in "Sleep" mode. Fix: Open Device Manager.

Find "Human Interface Devices" or "Universal Serial Bus controllers." Right-click the entry for this device -> Properties.

Under Power Management, uncheck "Allow this device to wake the computer." 🖱️ Input Lag or "Ghost" Inputs

Users frequently report that this dongle is detected as a keyboard even if it's just a mouse.

Fix: Ensure the dongle is plugged directly into a USB 2.0 port rather than a USB 3.0 port (blue), as 2.4GHz wireless signals often suffer from interference near USB 3.0 ports. 🐧 Linux Compatibility

On Linux, this device is known to work "out of the box" using the standard usbhid driver. If the buttons aren't working, it is likely a hardware failure rather than a driver issue. If you're troubleshooting a specific problem, tell me: Are you seeing this in a Power Efficiency Report? Is the device not working, or is it causing battery drain? What is the brand name printed on your mouse or keyboard? This long string is nothing but a technical

I can provide specific driver links or registry fixes based on your situation.

This text provides a concise technical description of a USB Human Interface Device (HID) identified by Vendor ID 0x1EA7 and Product ID 0x0066, firmware revision 0x0200, with Interface (MI) 00.

Background

Typical descriptors and behavior

Common use cases

Driver and OS handling

Diagnostics and troubleshooting

Security and firmware considerations

If you want, I can:


Title: Decoding HID/VID: 1EA7:0066 Rev 0200 – The Curious Case of the “2-in-1” Audio Dongle

Posted by: HardwareDeepDive Date: Today at 10:42 AM Subreddit: r/ReverseEngineering / r/LinuxHardware

TL;DR: If you have a headset that shows up as vid-1ea7 amp-pid-0066 amp-rev-0200 amp-mi-00, you are likely looking at the internal USB controller of a SHARKOON Skiller SGH1. It uses a composite device design with multiple interfaces (MI-00 being the first). Need further help


For the price point (usually around $50–$70 USD), the Fifine AM8 is arguably the best value microphone on the market. It punches above its weight class in audio quality and offers flexibility that competitors lack.

Pros:

Cons:

It is highly unusual to encounter a string like hid vid-1ea7 amp-pid-0066 amp-rev-0200 amp-mi-00 as a natural keyword for an article. This string contains technical identifiers that appear to be a concatenation of USB device descriptors mixed with an amp; (HTML/XML entity for ampersand) artifact.

After analysis, this string likely originates from a USB device hardware ID — specifically VID_1EA7&PID_0066&REV_0200&MI_00 — that was corrupted when pasted from a system log, a website URL, or a browser’s developer console. The amp; fragments suggest the & symbols were HTML-encoded.

Let’s break down what this hardware ID means, why it appears, and how to resolve related driver or device recognition issues.


Access with HIDAPI (C/C++/Python):

import hid

vid = 0x1ea7 pid = 0x0066

device = hid.device() device.open(vid, pid)

print("Manufacturer:", device.get_manufacturer_string()) print("Product:", device.get_product_string()) print("Serial:", device.get_serial_number_string())

This string is a Windows Plug and Play hardware identifier for a specific USB device. Each component tells you:

| Component | Meaning | Value | |-----------|---------|-------| | VID_1EA7 | Vendor ID (assigned by USB-IF) | 0x1EA7 → SHARKOON Technologies GmbH | | PID_0066 | Product ID (assigned by vendor) | 0x0066 → Specific device model | | REV_0200 | Revision/firmware version | 2.00 | | MI_00 | Multiple Interface number | 00 (first interface) |

MI_00 indicates the device uses a composite USB configuration with multiple interfaces (e.g., keyboard + mouse + extra keys).