wiimote 0.2.0

Wiimote library/driver for Rust via hidapi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
    This file is part of wiimote-rs (https://codeberg.org/metamuffin/wiimote-rs)
    which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
    Copyright (C) 2023 metamuffin <metamuffin@disroot.org>
*/
use std::{thread::sleep, time::Duration};
use wiimote::{Action, Wiimote};

fn main() {
    env_logger::init_from_env("LOG");
    let w = Wiimote::open();

    w.write(Action::RumbleEnable(true));
    sleep(Duration::from_millis(1000));
    w.write(Action::RumbleEnable(false));
}