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.
Dependencies: EthernetInterface NTPClient SDFileSystem TextLCD WebSocketClient mbed-rtos mbed Socket lwip-eth lwip-sys lwip FATFileSystem
Counter.cpp
00001 #include "Counter.h" 00002 00003 Counter::Counter(PinName flowsignal) : 00004 _flowsensor(flowsignal) { 00005 Count=0; 00006 _flowsensor.fall(this, &Counter::click); 00007 } 00008 00009 void Counter::click() { 00010 Count++; 00011 } 00012 00013 float Counter::Flow(){ 00014 return (float) Count/PulsPrLiter; 00015 } 00016
Generated on Tue Jul 12 2022 14:07:50 by
1.7.2