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.
Limiter.h
00001 #ifndef MBED_LIMITER_H 00002 #define MBED_LIMITER_H 00003 00004 #include "mbed.h" 00005 #include "stdarg.h" 00006 00007 class Limiter 00008 { 00009 public: 00010 Limiter(float); 00011 void setup(float,float); 00012 float calc(float); 00013 private: 00014 float _period; 00015 float _rate; 00016 float _lastval; 00017 }; 00018 #endif
Generated on Wed Jul 13 2022 09:20:34 by
1.7.2