23 void reset() { commandCount = 0; }
25 static constexpr size_t maxCommandSize = 63;
26 using Command = std::array<char, maxCommandSize>;
28 static constexpr uint8_t maxCommands = 2;
29 std::array<Command, maxCommands> commandList;
30 uint8_t commandCount = 0;
33extern Inputs read_inputs();
Program scope.
Definition: control_fixed_modes.hpp:12
read external inputs (may take some time)
Definition: text_in.h:22