You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an arduino project and I need to use the <TinyUSB_Mouse_and_Keyboard.h>. I have downloaded it from here and included the zip library into the project.
Trying to run this and it is returning:
fatal error: HID.h: No such file or directory
45 | #include <HID.h>
| ^~~~~~~
compilation terminated.
The text was updated successfully, but these errors were encountered:
If it's looking for HID.h that means you are not using the TinyUSB stack to compile the program. You didn't say what kind of processor you are attempting to compile. Apparently it's one that does not support the standard Arduino HID.h. This library is designed to switch between the tiny USB in the standard Arduino versions of mouse and keyboard but if your platform does not support the standard Arduino version it will not compile.
I have an arduino project and I need to use the <TinyUSB_Mouse_and_Keyboard.h>. I have downloaded it from here and included the zip library into the project.
Trying to run this and it is returning:
fatal error: HID.h: No such file or directory
45 | #include <HID.h>
| ^~~~~~~
compilation terminated.
The text was updated successfully, but these errors were encountered: