-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImprovedMouse.cpp
110 lines (90 loc) · 3.79 KB
/
ImprovedMouse.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
ImprovedMouse.cpp
Copyright (c) 2023, khanxbahria
Arduino Mouse library code originally Copyright (c) 2015, Arduino LLC
Original code (pre-library) by Peter Barrett
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Modifications:
- Added support for 16-bit axis in HID report
- Removed scroll-wheel
- Provided a method for transmitting raw HID reports
*/
#include "ImprovedMouse.h"
#if defined(_USING_HID)
/*
[+] Increased report size to 16 bits per movement axis
[-] Removed scroll wheel support
*/
static const uint8_t _hidReportDescriptor[] PROGMEM = {
// Mouse
0x05, 0x01, // USAGE_PAGE (Generic Desktop) // 54
0x09, 0x02, // USAGE (Mouse)
0xa1, 0x01, // COLLECTION (Application)
0x09, 0x01, // USAGE (Pointer)
0xa1, 0x00, // COLLECTION (Physical)
0x85, 0x01, // REPORT_ID (1)
0x05, 0x09, // USAGE_PAGE (Button)
0x19, 0x01, // USAGE_MINIMUM (Button 1)
0x29, 0x03, // USAGE_MAXIMUM (Button 3)
0x15, 0x00, // LOGICAL_MINIMUM (0)
0x25, 0x01, // LOGICAL_MAXIMUM (1)
0x95, 0x03, // REPORT_COUNT (3)
0x75, 0x01, // REPORT_SIZE (1)
0x81, 0x02, // INPUT (Data,Var,Abs)
0x95, 0x01, // REPORT_COUNT (1)
0x75, 0x05, // REPORT_SIZE (5)
0x81, 0x03, // INPUT (Cnst,Var,Abs)
0x05, 0x01, // USAGE_PAGE (Generic Desktop)
0x09, 0x30, // USAGE (X)
0x09, 0x31, // USAGE (Y)
0x16, 0x01, 0x80, // LOGICAL_MINIMUM (-32767)
0x26, 0xff, 0x7f, // LOGICAL_MAXIMUM (32767)
0x75, 0x10, // REPORT_SIZE (16)
0x95, 0x02, // REPORT_COUNT (2)
0x81, 0x06, // INPUT (Data,Var,Rel)
0xc0, // END_COLLECTION
0xc0, // END_COLLECTION
};
#define LOW_BYTE(x) ((uint8_t)(x & 0xFF))
#define HIGH_BYTE(x) ((uint8_t)((x >> 8) & 0xFF))
//================================================================================
//================================================================================
// Mouse
ImprovedMouse_::ImprovedMouse_()
{
static HIDSubDescriptor node(_hidReportDescriptor, sizeof(_hidReportDescriptor));
HID().AppendDescriptor(&node);
}
void ImprovedMouse_::begin()
{
}
void ImprovedMouse_::end()
{
}
uint8_t* ImprovedMouse_::makeReport(const int16_t& x, const int16_t& y)
{
uint8_t reportData[MOUSE_DATA_SIZE];
reportData[0] = _buttons;
reportData[1] = LOW_BYTE(x);
reportData[2] = HIGH_BYTE(x);
reportData[3] = LOW_BYTE(y);
reportData[4] = HIGH_BYTE(y);
return reportData;
}
void ImprovedMouse_::sendRawReport(const uint8_t* reportData)
{
_buttons = reportData[0];
HID().SendReport(1,reportData,MOUSE_DATA_SIZE);
}
ImprovedMouse_ ImprovedMouse;
#endif