From 4a6bc2b7e0123c8c62b4c45f8a5960748ac1a907 Mon Sep 17 00:00:00 2001 From: jcarolinares Date: Tue, 27 Jun 2023 19:22:58 +0200 Subject: [PATCH 1/2] Small typo/grammar suggestions --- .../boards/uno-r4-minima/tutorials/usb-hid/usb-hid.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/hardware/02.hero/boards/uno-r4-minima/tutorials/usb-hid/usb-hid.md b/content/hardware/02.hero/boards/uno-r4-minima/tutorials/usb-hid/usb-hid.md index 3f750358af..3d1f937261 100644 --- a/content/hardware/02.hero/boards/uno-r4-minima/tutorials/usb-hid/usb-hid.md +++ b/content/hardware/02.hero/boards/uno-r4-minima/tutorials/usb-hid/usb-hid.md @@ -15,10 +15,10 @@ This feature can be used to create game controllers, keyboard extensions or othe ## Goals -The goals of this tutorials are: +The goals of this tutorial is: - Learn how to emulate a keyboard (keypresses), -- learn how to emulate a mouse (x,y coordinates). +- Learn how to emulate a mouse (x,y coordinates). ## Hardware & Software Needed @@ -28,11 +28,11 @@ The goals of this tutorials are: ## Human Interface Device (HID) -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. +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. 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. -To turn your board into an HID, you can use the **keyboard/mouse** API that is built in to the core. You can visit the documentation for this API in the language reference at: +To turn your board into an HID, you can use the **keyboard/mouse** API that is built into the core. You can visit the documentation for this API in the language reference at: - [Keyboard](https://www.arduino.cc/reference/en/language/functions/usb/keyboard/) - [Mouse](https://www.arduino.cc/reference/en/language/functions/usb/mouse/) From 7152141d6f445f85642096905213ecc1ad3c2049 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20Hyl=C3=A9n?= <60390259+jacobhylen@users.noreply.github.com> Date: Wed, 19 Jul 2023 09:22:04 +0200 Subject: [PATCH 2/2] Update content/hardware/02.hero/boards/uno-r4-minima/tutorials/usb-hid/usb-hid.md --- .../02.hero/boards/uno-r4-minima/tutorials/usb-hid/usb-hid.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/hardware/02.hero/boards/uno-r4-minima/tutorials/usb-hid/usb-hid.md b/content/hardware/02.hero/boards/uno-r4-minima/tutorials/usb-hid/usb-hid.md index 3d1f937261..c27cfea0e4 100644 --- a/content/hardware/02.hero/boards/uno-r4-minima/tutorials/usb-hid/usb-hid.md +++ b/content/hardware/02.hero/boards/uno-r4-minima/tutorials/usb-hid/usb-hid.md @@ -15,7 +15,7 @@ This feature can be used to create game controllers, keyboard extensions or othe ## Goals -The goals of this tutorial is: +The goals of this tutorial are to: - Learn how to emulate a keyboard (keypresses), - Learn how to emulate a mouse (x,y coordinates).