hut

Crates.iohut
lib.rshut
version0.3.0
sourcesrc
created_at2024-05-15 09:10:57.584759
updated_at2024-11-19 00:52:17.891187
descriptionThe HID Usage Tables
homepagehttps://github.com/hidutils
repositoryhttps://github.com/hidutils/hut
max_upload_size
id1240805
size1,342,665
Peter Hutterer (whot)

documentation

README

hut - HID Usage Tables

This crate provides access to the HID Usage Tables (HUT).

This module is created through code generation from the HID Usage Tables.

This crate merely provides enums and functions to convert between values, it does not concern itself with how to obtain the values to be used. Look at e.g. the hidreport crate for parsing HID Report descriptors.

use hut::*;

let usage = Usage::from(GenericDesktop::Mouse);

let usage_page_value: u16 = 0x01; // Generic Desktop
let usage_id_value: u16 = 0x02; // Mouse
let usage_value: u32 = (usage_page_value as u32) << 16 | usage_id_value as u32;

let u: Usage = Usage::try_from(usage_value).unwrap();

See the documentation for more details.

License

hut is MIT-licensed, see the COPYING file for details.

Commit count: 53

cargo fmt