Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: ServomotorTests NerfUSTarget
RealServomotor.hpp
00001 #ifndef REAL_SERVOMOTOR_HPP 00002 #define REAL_SERVOMOTOR_HPP 00003 00004 #include "PwmOutInterface.hpp" 00005 #include "Servomotor.hpp" 00006 00007 class RealServomotor : public Servomotor 00008 { 00009 public: 00010 RealServomotor(PwmOutInterface &pwm_out); 00011 virtual void set_position_down(); 00012 00013 private: 00014 PwmOutInterface &pwm_out; 00015 }; 00016 00017 #endif
Generated on Thu Jul 14 2022 19:16:36 by
