Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed FATFileSystem USBHost-STM32F4
Diff: main.cpp
- Revision:
- 0:9fe634115b66
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Tue Feb 19 21:48:44 2019 +0000
@@ -0,0 +1,49 @@
+#include "mbed.h"
+#include "USBHostMouse.h"
+
+#define LED1 PA_6
+
+DigitalOut led(LED1);
+
+/**
+ * @brief
+ * @note
+ * @param
+ * @retval
+ */
+void onMouseEvent(uint8_t buttons, int8_t x, int8_t y, int8_t z)
+{
+ printf("buttons: %d, x: %d, y: %d, z: %d\r\n", buttons, x, y, z);
+}
+
+/**
+ * @brief
+ * @note
+ * @param
+ * @retval
+ */
+int main()
+{
+ USBHostMouse mouse;
+
+ // connect a USB mouse
+ if (!mouse.connect()) {
+ printf("USB mouse not found.\n");
+ return -1;
+ }
+
+ printf("Mouse connected\r\n");
+ // when connected, attach handler called on mouse event
+ mouse.attachEvent(onMouseEvent);
+
+ Timer t;
+ t.start();
+ while(1) {
+ if (t.read_ms() > 500) {
+ led = !led;
+ t.reset();
+ }
+
+ USBHost::poll();
+ }
+}