Skovbrynet / Mbed 2 deprecated TankCounter

Dependencies:   EthernetInterface NTPClient SDFileSystem TextLCD WebSocketClient mbed-rtos mbed Socket lwip-eth lwip-sys lwip FATFileSystem

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Counter.cpp Source File

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