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.
Data.h
00001 #ifndef DATA_H 00002 #define DATA_H 00003 00004 #include "mbed.h" 00005 00006 class Data{ 00007 //Ticker voor peroidieke metingen. 00008 protected: 00009 InterruptIn button; 00010 Ticker tick; 00011 public: 00012 Data(PinName pin); 00013 double getDistance(void); 00014 int getTime(void); 00015 double getSpeed(void); 00016 double getAverage(void); 00017 int getLastCount(void); 00018 00019 }; 00020 00021 #endif
Generated on Fri Jul 22 2022 00:59:04 by
1.7.2