Hid Vid-1ea7 Amp-pid-0066 Amp-rev-0200 Amp-mi-00 Info
import re broken = "hid vid-1ea7 amp-pid-0066 amp-rev-0200 amp-mi-00" # Step 1: replace 'amp-' with '&' fixed = broken.replace("amp-", "&") # Step 2: Normalize format fixed = re.sub(r'(\bvid|pid|rev|mi)-', r'\1_', fixed, flags=re.I) print(fixed) # hid vid_1EA7&pid_0066&rev_0200&mi_00 # Step 3: Prepend HID\ and uppercase hardware_id = "HID\\" + fixed[4:].upper() print(hardware_id) # HID\VID_1EA7&PID_0066&REV_0200&MI_00
: The MI_00 suffix indicates the first logical interface of the device, which typically handles the standard keyboard input . If your computer shows other entries like MI_01 , those often correspond to media keys (volume, play/pause) or touchpad/mouse functions. Troubleshooting Common Issues
When a device carries official USB-IF certification, it guarantees compliance with USB specifications, ensuring proper power management, data transfer, and compatibility across different operating systems and hardware.
The hardware ID HID_VID_1EA7&PID_0066&REV_0200&MI_00 identifies a generic 2.4GHz wireless combo device—typically a keyboard and mouse set sold under various brand names like SHARKOON Mediatrack Edge Mini or as individual mice like the HXSJ M103. While these devices work adequately for basic computing tasks on most operating systems, they may present compatibility issues, particularly with Linux, and lack advanced features found in more expensive peripherals. hid vid-1ea7 amp-pid-0066 amp-rev-0200 amp-mi-00
Sharkoon is a German manufacturer of PC peripherals. The PID 0066 corresponds to the:
. It works seamlessly across Windows and most Linux distributions (like Fedora or Mint) without requiring proprietary drivers. Wireless Range
In Windows Device Manager, the device may appear under "Unknown Devices" or display an error icon. This typically indicates a or Code 28 (Drivers are not installed) error. This happens when the Windows plug-and-play architecture fails to bind the default HID keyboard driver to the USB dongle. 2. Intermittent Disconnections or Lag import re broken = "hid vid-1ea7 amp-pid-0066 amp-rev-0200
| Symptom | Likely fix | |---------|-------------| | Device not detected | Check USB port, try different cable/dongle. | | Detected but no input | Device needs re-pairing (press button under mouse/keyboard). | | Works then stops | USB selective suspend – disable per device in Power Management tab. | | MI_00 = no function | That interface might be battery/status; check MI_01 for actual HID input. |
These devices are standardized HID devices, which means the generic drivers built into modern operating systems (Windows, macOS, Linux, Chrome OS, Android) should work plug-and-play without any extra software.
Below is depending on your role.
: The revision number of the device hardware (Revision 2.00).
In our searches, we found many examples of other USB devices with a REV_0200 identifier, such as various Realtek Wi-Fi adapters, demonstrating that a revision of 2.0.0 is quite common across different product types.
Is this device connecting via a , Bluetooth , or a wired cable ? The PID 0066 corresponds to the:
Diagnostics and troubleshooting
Whether the device is a or integrated laptop/embedded hardware.