this handler helps you build a translation table for MatrixToStream by outputing the keycode observed as .into() Hex-Keycode\tKeyCode:: so you can simply enter the keycode on a different keyboard after pressing a key and later sort by
| 48 | /// so you can simply enter the keycode on a different |
| 49 | /// keyboard after pressing a key and later sort by |
| 50 | pub struct TranslationHelper {} |
| 51 | impl<T: USBKeyOut> ProcessKeys<T> for TranslationHelper { |
| 52 | fn process_keys(&mut self, events: &mut Vec<(Event, EventStatus)>, output: &mut T) ->HandlerResult { |
| 53 | for (e, status) in iter_unhandled_mut(events) { |
nothing calls this directly
no outgoing calls
no test coverage detected