AND / Mbed 2 deprecated handheld_with_solenoid

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers flow.h Source File

flow.h

00001 #include "mbed.h"
00002 
00003 AnalogIn flowIn(A3);
00004 
00005 float flowVal;
00006 
00007 float flow(){
00008     while(1){
00009           flowVal=3.3*flowIn; //Logic level 3.3
00010           return flowVal;
00011     }
00012 }