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
To use mouse functionalities, we need to include the library at the top of our sketch. The Mouse class contains several methods that are useful to emulate a mouse.
@@ -86,6 +96,7 @@ The following example moves both axis of mouse just slightly (10 points), back a
86
96
87
97
void setup() {
88
98
Mouse.begin();
99
+
delay(1000);
89
100
}
90
101
91
102
void loop() {
@@ -96,10 +107,17 @@ void loop() {
96
107
}
97
108
```
98
109
110
+
To see more examples, please refer to links below:
111
+
112
+
-[Keyboard and Mouse Control Tutorial](/built-in-examples/usb/KeyboardAndMouseControl)
113
+
-[Button Mouse Control Tutorial](/built-in-examples/usb/ButtonMouseControl)
114
+
-[Joystick Mouse Control Tutorial](/built-in-examples/usb/JoystickMouseControl)
115
+
99
116
## Summary
100
117
101
118
In this tutorial, we have demonstrated some basic HID usage with the UNO R4 Minima. To view the full API, please refer to the following APIs:
To use mouse functionalities, we need to include the library at the top of our sketch. The Mouse class contains several methods that are useful to emulate a mouse.
@@ -86,6 +95,7 @@ The following example moves both axis of mouse just slightly (10 points), back a
86
95
87
96
void setup() {
88
97
Mouse.begin();
98
+
delay(1000);
89
99
}
90
100
91
101
void loop() {
@@ -96,6 +106,12 @@ void loop() {
96
106
}
97
107
```
98
108
109
+
To see more examples, please refer to links below:
110
+
111
+
-[Keyboard and Mouse Control Tutorial](/built-in-examples/usb/KeyboardAndMouseControl)
112
+
-[Button Mouse Control Tutorial](/built-in-examples/usb/ButtonMouseControl)
113
+
-[Joystick Mouse Control Tutorial](/built-in-examples/usb/JoystickMouseControl)
114
+
99
115
## Summary
100
116
101
117
In this tutorial, we have demonstrated some basic HID usage with the UNO R4 WiFi. To view the full API, please refer to the following APIs:
0 commit comments