You've already forked meshtastic-device-ui
mirror of
https://github.com/m5stack/meshtastic-device-ui.git
synced 2026-05-20 11:51:03 -07:00
7473151c8a
* I2C keyboard scanner + cardkb * scan all keyboards * request input from all keyboards * CardKB Fn+ENTER: simulate LONG PRESS
18 lines
444 B
C++
18 lines
444 B
C++
#pragma once
|
|
|
|
class I2CKeyboardInputDriver;
|
|
|
|
/**
|
|
* @brief This class is used to scan I2C connected keyboards and creates
|
|
* the corresponding input device (factory).
|
|
* It is used by the T-Deck, T-Deck Pro, T-Lora Pager, and other
|
|
* I2C connected keyboards.
|
|
*/
|
|
class I2CKeyboardScanner
|
|
{
|
|
public:
|
|
I2CKeyboardScanner(void);
|
|
virtual I2CKeyboardInputDriver *scan(void);
|
|
virtual ~I2CKeyboardScanner(void) {}
|
|
};
|