Why is there no example of Teensyduino's USB Raw HID

Boaas

Member
I am using teensy2.0, and I can see in the Code Library of the image below that there is a USB: Raw HID, but WANING: observer
1.png

So I clicked on Teensyduino to check, but found that Teensyduino does not have a USB Raw HID. So I wanted to ask if Teensyduino has any examples of writing USB Raw HID's Host and Device. I want to use Teensyduino USB Raw HID to connect and operate the mouse in Teensy2.0
2.png
 
There is a RawHID example. In the Arduino IDE, open File > Examples > Teensy > RawHID > Basic

1709383499340.png


Paul
 
There is a RawHID example. In the Arduino IDE, open File > Examples > Teensy > RawHID > Basic

View attachment 33553

Paul
But I took a look at what you said and found no examples of Teensy. My Arduino IDE version is 2.3.2, and I installed package_teensy_index.json in the Additional boards manager URLs, so where is the problem with me?
1.png
2.png
 
You are missing all the _Teensy examples
Here this is on my screen
I guess, you first need to select Teensy 4.1 as board


1709401578653.png
 
Last edited:
Arduino IDE menus automatically change depending on the selected board. If you haven't selected Teensy, the IDE won't show you Teensy's examples.

Click the "Select Board" drop-down if a Teensy is connected to your PC. Or if you don't have a Teensy connected, use Tools > Board to select any Teensy model. Then you should see the Teensy examples in the File > Example menu.
 
Arduino IDE menus automatically change depending on the selected board. If you haven't selected Teensy, the IDE won't show you Teensy's examples.

Click the "Select Board" drop-down if a Teensy is connected to your PC. Or if you don't have a Teensy connected, use Tools > Board to select any Teensy model. Then you should see the Teensy examples in the File > Example menu.
Thank you
 
Back
Top