NerfUS / Servomotor

Dependents:   ServomotorTests NerfUSTarget

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers PwmOutInterface.hpp Source File

PwmOutInterface.hpp

00001 #ifndef PWM_OUT_INTERFACE_HPP
00002 #define PWM_OUT_INTERFACE_HPP
00003 
00004 class PwmOutInterface
00005 {
00006     public:
00007         virtual void pulsewidth_us(int us) = 0;    
00008 };
00009 
00010 #endif