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: mbed
flow.h
- Committer:
- mehrnaz
- Date:
- 2019-07-04
- Revision:
- 3:a30e6bec3e30
- Parent:
- 0:958e045ea7d1
File content as of revision 3:a30e6bec3e30:
#include "mbed.h" AnalogIn flowIn(A0); float flowVal; float flow(){ while(1){ flowVal=3.3*flowIn; //Logic level 3.3 return flowVal; } }