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:
- christodoulos
- Date:
- 2019-03-22
- Revision:
- 0:958e045ea7d1
- Child:
- 1:af991edb6dc1
File content as of revision 0:958e045ea7d1:
#include "mbed.h" AnalogIn flowIn(A0); float flowVal; float flow(){ while(1){ flowVal=3.3*flowIn; //Logic level 3.3 return flowVal; } }