aboutsummaryrefslogtreecommitdiff
path: root/hid/examples
diff options
context:
space:
mode:
authorDaniel Mueller <deso@posteo.net>2017-03-26 17:07:56 -0700
committerDaniel Mueller <deso@posteo.net>2017-03-26 17:07:56 -0700
commitcd6e41862cea59ec306e7c9c578270575eb2a73b (patch)
tree1ee556e55face6290f6646f544282d3319fc6b35 /hid/examples
parent654b2e5fa1566f0479b09adf2d73f783196ad032 (diff)
downloadnitrocli-cd6e41862cea59ec306e7c9c578270575eb2a73b.tar.gz
nitrocli-cd6e41862cea59ec306e7c9c578270575eb2a73b.tar.bz2
Import subrepo hid/:hid at 3ac1005fe3e874bef850ab733fe1a09bc36b91c5
Diffstat (limited to 'hid/examples')
-rw-r--r--hid/examples/list.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/hid/examples/list.rs b/hid/examples/list.rs
new file mode 100644
index 0000000..da24bcb
--- /dev/null
+++ b/hid/examples/list.rs
@@ -0,0 +1,24 @@
+extern crate hid;
+
+fn main() {
+ let hid = hid::init().unwrap();
+
+ for device in hid.devices() {
+ print!("{} ", device.path().to_str().unwrap());
+ print!("ID {:x}:{:x} ", device.vendor_id(), device.product_id());
+
+ if let Some(name) = device.manufacturer_string() {
+ print!("{} ", name);
+ }
+
+ if let Some(name) = device.product_string() {
+ print!("{} ", name);
+ }
+
+ if let Some(name) = device.serial_number() {
+ print!("{} ", name);
+ }
+
+ println!();
+ }
+}