LedController
Dependents: LedControllerTests NerfUSTarget
Fork of Servomotor by
include/DigitalOutInterface.hpp@4:6f0756847428, 2017-03-05 (annotated)
- Committer:
- dupm2216
- Date:
- Sun Mar 05 18:52:04 2017 +0000
- Revision:
- 4:6f0756847428
Initial commit for LedController
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
dupm2216 | 4:6f0756847428 | 1 | #ifndef DIGITAL_OUT_INTERFACE_HPP |
dupm2216 | 4:6f0756847428 | 2 | #define DIGITAL_OUT_INTERFACE_HPP |
dupm2216 | 4:6f0756847428 | 3 | |
dupm2216 | 4:6f0756847428 | 4 | class DigitalOutInterface |
dupm2216 | 4:6f0756847428 | 5 | { |
dupm2216 | 4:6f0756847428 | 6 | public: |
dupm2216 | 4:6f0756847428 | 7 | virtual void write(int value) = 0; |
dupm2216 | 4:6f0756847428 | 8 | }; |
dupm2216 | 4:6f0756847428 | 9 | |
dupm2216 | 4:6f0756847428 | 10 | #endif |