files/en-us/web/api/hidinputreportevent/index.md
{{securecontext_header}}{{APIRef("WebHID API")}}{{SeeCompatTable}}{{AvailableInWorkers("window_and_worker_except_shared")}}
The HIDInputReportEvent interface of the WebHID API is passed to {{domxref("HIDDevice.inputreport_event", "inputreport")}} event of HIDDevice when an input report is received from any associated HID device.
{{InheritanceDiagram}}
This interface also inherits properties from {{domxref("Event")}}.
reportId if the HID interface uses report IDs.This interface inherits methods from its parent, {{domxref("Event")}}.
The following example demonstrates listening for an inputReport that will allow the application to detect which button is pressed on a Joy-Con Right device. You can see more examples, and live demos in the article Connecting to uncommon HID devices.
device.addEventListener("inputreport", (event) => {
const { data, device, reportId } = event;
// Handle only the Joy-Con Right device and a specific report ID.
if (device.productId !== 0x2007 && reportId !== 0x3f) return;
const value = data.getUint8(0);
if (value === 0) return;
const someButtons = { 1: "A", 2: "X", 4: "B", 8: "Y" };
console.log(`User pressed button ${someButtons[value]}.`);
});
{{Specifications}}
{{Compat}}