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.
MovingAverage.h
00001 #ifndef MOVING_AVERAGE_H 00002 #define MOVING_AVERAGE_H 00003 00004 template <class T> 00005 class MovingAverage 00006 { 00007 private: 00008 T AverageFilter[]; 00009 T Average; 00010 00011 unsigned char NextElement; 00012 unsigned char MaxLength; 00013 public: 00014 MovingAverage(unsigned char maxLength, T defaultValue); 00015 T GetAverage(); 00016 void Insert(T value); 00017 }; 00018 00019 #endif
Generated on Fri Aug 19 2022 05:34:37 by
1.7.2