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.
NK_motor.hpp
00001 #ifndef NK_motor 00002 #define NK_motor 00003 00004 #include "mbed.h" 00005 00006 class Nk_motor{ 00007 public: 00008 Nk_motor(PinName plus,PinName minus,int period); 00009 ~Nk_motor(); 00010 void SetLimit(double max,double min); 00011 void pwmout(double pwm); 00012 private: 00013 double Max; 00014 double Min; 00015 PwmOut *Plus; 00016 PwmOut *Minus; 00017 double Pwm; 00018 }; 00019 00020 #endif
Generated on Sat Aug 27 2022 19:56:44 by
