lokey 0.0.1

An extensible keyboard firmware
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod channel;
pub mod pubsub;

macro_rules! unwrap {
    ($($x:tt)*) => {{
        #[cfg(feature = "defmt")]
        { defmt::unwrap!($($x)*) }
        #[cfg(not(feature = "defmt"))]
        { $($x)*.unwrap() }
    }}
}

pub(crate) use unwrap;