Skip to content

Commit 132d778

Browse files
authored
Merge pull request #1118 from arduino/jcarolinares/minima-hid/small-typo
Small typo/grammar suggestions
2 parents 05746fb + 0ce4098 commit 132d778

File tree

1 file changed

+4
-3
lines changed
  • content/hardware/02.hero/boards/uno-r4-minima/tutorials/usb-hid

1 file changed

+4
-3
lines changed

content/hardware/02.hero/boards/uno-r4-minima/tutorials/usb-hid/usb-hid.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ This feature can be used to create game controllers, keyboard extensions or othe
1515

1616
## Goals
1717

18-
The goals of this tutorials are:
18+
The goals of this tutorial are to:
1919

2020
- Learn how to emulate a keyboard (keypresses),
21-
- learn how to emulate a mouse (x,y coordinates).
21+
- Learn how to emulate a mouse (x,y coordinates).
2222

2323
## Hardware & Software Needed
2424

@@ -28,11 +28,12 @@ The goals of this tutorials are:
2828

2929
## Human Interface Device (HID)
3030

31-
Human interface devices (HID) are devices designed for humans (keyboards, mice, game controllers etc.), that frequently sends data over USB to a computer. When you press a key on a keyboard, you send data to a computer, which reads it and in turn activates the corresponding key.
31+
Human interface devices (HID) are devices designed for humans (keyboards, mice, game controllers etc.), that frequently send data over USB to a computer. When you press a key on a keyboard, you send data to a computer, which reads it and in turn activates the corresponding key.
3232

3333
The UNO R4 Minima has built-in support for HID, a feature found on most modern day development boards, but not on previous UNO revisions.
3434

3535
To turn your board into an HID, you can use the **keyboard/mouse** API that is built in to the Board Package. You can visit the documentation for this API in the language reference at:
36+
3637
- [Keyboard](https://www.arduino.cc/reference/en/language/functions/usb/keyboard/)
3738
- [Mouse](https://www.arduino.cc/reference/en/language/functions/usb/mouse/)
3839

0 commit comments

Comments
 (0)