15 lines
266 B

#ifndef PANELCHECKER_H
#define PANELCHECKER_H
class PanelChecker
{
public:
PanelChecker();
static bool isKeyboardConnected();
static bool isMouseConnected();
static bool isTouchpanelConnected();
static bool isSecondLcdConnected();
};
#endif //PANELCHECKER_H