We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06fdaa1 commit 5c67334Copy full SHA for 5c67334
libraries/USB/examples/HIDVendor/HIDVendor.ino
@@ -20,7 +20,7 @@ static void vendorEventCallback(void* arg, esp_event_base_t event_base, int32_t
20
case ARDUINO_USB_HID_VENDOR_SET_FEATURE_EVENT:
21
Serial.printf("HID VENDOR SET FEATURE: len:%u\n", data->len);
22
for(uint16_t i=0; i<data->len; i++){
23
- Serial.printf("0x%02X ",data->buffer);
+ Serial.printf("0x%02X ",*(data->buffer));
24
}
25
Serial.println();
26
break;
0 commit comments