keypad_funcs.h 203 B

12345678910
  1. #ifndef KEYPAD_H
  2. #define KEYPAD_H
  3. #include <optional>
  4. std::optional<char> ApplyNumericCommand(char command, char state);
  5. std::optional<char> ApplyDirectionalCommand(char command, char state);
  6. #endif