From 766ef64b4bb6506eb839ff4e695468d4c1abc407 Mon Sep 17 00:00:00 2001 From: Nico Date: Sun, 11 Jan 2015 23:11:43 +0100 Subject: [PATCH] Removed outdated notice in examples --- examples/HID_Advanced/AdvancedGamepad/AdvancedGamepad.ino | 5 +---- examples/HID_Basic/HID_Consumer/HID_Consumer.ino | 3 --- examples/HID_Basic/HID_Gamepad/HID_Gamepad.ino | 3 --- examples/HID_Basic/HID_Keyboard/HID_Keyboard.ino | 3 --- examples/HID_Basic/HID_Keyboard_Led/HID_Keyboard_Led.ino | 3 --- examples/HID_Basic/HID_Mouse/HID_Mouse.ino | 3 --- examples/HID_Basic/HID_System/HID_System.ino | 3 --- 7 files changed, 1 insertion(+), 22 deletions(-) diff --git a/examples/HID_Advanced/AdvancedGamepad/AdvancedGamepad.ino b/examples/HID_Advanced/AdvancedGamepad/AdvancedGamepad.ino index 6293320..0aeb3df 100644 --- a/examples/HID_Advanced/AdvancedGamepad/AdvancedGamepad.ino +++ b/examples/HID_Advanced/AdvancedGamepad/AdvancedGamepad.ino @@ -3,10 +3,7 @@ See the readme for credit to other people. Advanced Gamepad example - - Make sure the Gamepad report is set in: - sketchbook/hardware/HID/avr/variants/hid_descriptors/hid_descriptors.h - */ +*/ const int pinLed = LED_BUILTIN; const int pinButton = 2; diff --git a/examples/HID_Basic/HID_Consumer/HID_Consumer.ino b/examples/HID_Basic/HID_Consumer/HID_Consumer.ino index 186f6e1..f00ddc9 100644 --- a/examples/HID_Basic/HID_Consumer/HID_Consumer.ino +++ b/examples/HID_Basic/HID_Consumer/HID_Consumer.ino @@ -7,9 +7,6 @@ Press a button to play/pause music player See HID Project documentation for more Consumer keys. - Make sure the Consumer report is set in: - sketchbook/hardware/HID/avr/variants/hid_descriptors/hid_descriptors.h - // basic Media key definitions, see HID Project and official USB docs for more #define MEDIA_FAST_FORWARD 0xB3 #define MEDIA_REWIND 0xB4 diff --git a/examples/HID_Basic/HID_Gamepad/HID_Gamepad.ino b/examples/HID_Basic/HID_Gamepad/HID_Gamepad.ino index eeadb3f..89007ae 100644 --- a/examples/HID_Basic/HID_Gamepad/HID_Gamepad.ino +++ b/examples/HID_Basic/HID_Gamepad/HID_Gamepad.ino @@ -6,9 +6,6 @@ Press a button and demonstrate Gamepad actions - Make sure the Gamepad report is set in: - sketchbook/hardware/HID/avr/variants/hid_descriptors/hid_descriptors.h - Function prototypes: void begin(void); void end(void); diff --git a/examples/HID_Basic/HID_Keyboard/HID_Keyboard.ino b/examples/HID_Basic/HID_Keyboard/HID_Keyboard.ino index 62f06ab..d15e684 100644 --- a/examples/HID_Basic/HID_Keyboard/HID_Keyboard.ino +++ b/examples/HID_Basic/HID_Keyboard/HID_Keyboard.ino @@ -6,9 +6,6 @@ Press a button to write some text to your pc. See official and HID Project documentation for more infos - - Make sure the Keyboard report is set in (by default it is): - sketchbook/hardware/HID/avr/variants/hid_descriptors/hid_descriptors.h */ const int pinLed = LED_BUILTIN; diff --git a/examples/HID_Basic/HID_Keyboard_Led/HID_Keyboard_Led.ino b/examples/HID_Basic/HID_Keyboard_Led/HID_Keyboard_Led.ino index 0d5dcf2..3aa8134 100644 --- a/examples/HID_Basic/HID_Keyboard_Led/HID_Keyboard_Led.ino +++ b/examples/HID_Basic/HID_Keyboard_Led/HID_Keyboard_Led.ino @@ -7,9 +7,6 @@ Press a button to toogle caps lock. Caps lock state is represented by the onboard led. See official and HID Project documentation for more infos - - Make sure the Keyboard report + LEDs! is set in: - sketchbook/hardware/HID/avr/variants/hid_descriptors/hid_descriptors.h */ const int pinLed = LED_BUILTIN; diff --git a/examples/HID_Basic/HID_Mouse/HID_Mouse.ino b/examples/HID_Basic/HID_Mouse/HID_Mouse.ino index fa24b93..d5cf16b 100644 --- a/examples/HID_Basic/HID_Mouse/HID_Mouse.ino +++ b/examples/HID_Basic/HID_Mouse/HID_Mouse.ino @@ -7,9 +7,6 @@ Press a button to click, move, moveTo the mouse. See official documentation for more infos - Make sure the Absolute Mouse report is set in: - sketchbook/hardware/HID/avr/variants/hid_descriptors/hid_descriptors.h - Mouse Key definitions: MOUSE_LEFT MOUSE_RIGHT diff --git a/examples/HID_Basic/HID_System/HID_System.ino b/examples/HID_Basic/HID_System/HID_System.ino index b4f8588..1e8db53 100644 --- a/examples/HID_Basic/HID_System/HID_System.ino +++ b/examples/HID_Basic/HID_System/HID_System.ino @@ -5,9 +5,6 @@ System example Press a button to put pc into sleep/shut it down or wake it up again. - - Make sure the System report is set in: - sketchbook/hardware/HID/avr/variants/hid_descriptors/hid_descriptors.h */ const int pinLed = LED_BUILTIN;