LedController

Dependents:   LedControllerTests NerfUSTarget

Fork of Servomotor by NerfUS

Committer:
dupm2216
Date:
Wed Mar 08 16:58:30 2017 +0000
Revision:
5:7e27c8b08acd
Parent:
4:6f0756847428
Create LedControllerInterface

Who changed what in which revision?

UserRevisionLine numberNew 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