diff options
author | Brian Cully <bjc@kublai.com> | 2022-11-19 14:05:18 -0500 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2022-11-19 14:05:18 -0500 |
commit | c0ec86f5ec4428543ae18af941c7e3ef6877a369 (patch) | |
tree | 0b7d979ede27fef53255c0a306a203c27290fc07 /src/cirque.rs | |
parent | 20377d4522d513b66406d4ef8231a7cdbfedc157 (diff) | |
download | luchie-c0ec86f5ec4428543ae18af941c7e3ef6877a369.tar.gz luchie-c0ec86f5ec4428543ae18af941c7e3ef6877a369.zip |
usb: add mousewheel hid implementation
Diffstat (limited to 'src/cirque.rs')
-rw-r--r-- | src/cirque.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cirque.rs b/src/cirque.rs index 23df15b..0f40c51 100644 --- a/src/cirque.rs +++ b/src/cirque.rs @@ -98,11 +98,11 @@ where #[allow(unused)] #[derive(Debug)] pub struct TouchData { - x: u16, - y: u16, - z: u8, - buttons: u8, - is_pressed: bool, + pub x: u16, + pub y: u16, + pub z: u8, + pub buttons: u8, + pub is_pressed: bool, } impl TouchData { |