We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 773e6dc commit abe1c09Copy full SHA for abe1c09
libraries/USBHID/examples/Keyboard/Keyboard.ino
@@ -0,0 +1,15 @@
1
+#include "PluggableUSBHID.h"
2
+#include "USBKeyboard.h"
3
+
4
+USBKeyboard Keyboard;
5
6
+void setup() {
7
+ // put your setup code here, to run once:
8
9
+}
10
11
+void loop() {
12
+ // put your main code here, to run repeatedly:
13
+ delay(1000);
14
+ Keyboard.printf("Hello world\n\r");
15
libraries/USBHID/examples/Mouse/Mouse.ino
@@ -0,0 +1,17 @@
+#include "USBMouse.h"
+USBMouse Mouse;
+ Mouse.move(100,100);
16
+ Mouse.move(-100,-100);
17
0 commit comments