Breathalyzer running on the MBED 1768 Platform; EE4427 Group 3 Spring 2018

Dependencies:   4DGL-uLCD-SE mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers sensor.cpp Source File

sensor.cpp

00001 //Written by Madison Wilkey
00002 #include "sensor.h"
00003 AnalogIn sensorInput(p15);
00004 
00005 float takeReading(){
00006     return sensorInput.read();
00007 }