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.
TempData.h
00001 #ifndef TEMPDATA_H 00002 #define TEMPDATA_H 00003 00004 #include "TempData.h" 00005 00006 class TempData 00007 { 00008 public: 00009 TempData(); 00010 void PushData(float); 00011 float PopData(); 00012 float GetData(int); 00013 int GetCount(); 00014 private: 00015 int _count; 00016 float _buffer[10]; 00017 }; 00018 00019 #endif
Generated on Tue Jul 19 2022 04:04:00 by
1.7.2