ive got some basic code, just sanity checking whether OtherKey works at all since the print screen button wouldnt, and turns out OtherKey isnt working even for keys that are already in the enum
use inputbot::KeybdKey::*;
fn main() {
OtherKey(0x31).bind(|| println!("hi")); // 0x31 = Numrow1Key
inputbot::handle_input_events();
}
ive got some basic code, just sanity checking whether
OtherKeyworks at all since the print screen button wouldnt, and turns outOtherKeyisnt working even for keys that are already in the enum