macroboard 0.2.0

Turn any keyboard into a macro key board
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(not(any(target_os = "linux")))]
compile_error!("only linux platforms are supported");

#[cfg(target_os = "linux")]
#[path = "linux/mod.rs"]
mod platform;

mod trigger;
pub use trigger::{KeyboardTriggers, ListeningCmd, Triggers};

#[doc(no_inline)]
pub use keycode::KeyMappingCode;