| 2 | #include "input.pb.h" |
| 3 | #pragma once |
| 4 | class FixedInput: public Input { |
| 5 | public: |
| 6 | FixedInput(proto_FixedInput input); |
| 7 | bool tickDigital(); |
| 8 | uint16_t tickAnalog(); |
| 9 | void setup(); |
| 10 | private: |
| 11 | proto_FixedInput m_input; |
| 12 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected