| 4 | #include "stdio.h" |
| 5 | |
| 6 | MatrixInput::MatrixInput(proto_MatrixInput input, std::shared_ptr<MatrixDevice> device) : m_input(input), m_device(device) |
| 7 | { |
| 8 | } |
| 9 | bool MatrixInput::tickDigital() |
| 10 | { |
| 11 | if (m_input.pin == -1 || m_input.outputPin == -1) |
nothing calls this directly
no outgoing calls
no test coverage detected