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

Dependencies:   4DGL-uLCD-SE mbed

Committer:
phred754
Date:
Mon Apr 23 22:18:27 2018 +0000
Revision:
0:35f90b280233
EE4427 Final Project Group 3

Who changed what in which revision?

UserRevisionLine numberNew contents of line
phred754 0:35f90b280233 1 //Written by Madison Wilkey
phred754 0:35f90b280233 2 #include "sensor.h"
phred754 0:35f90b280233 3 AnalogIn sensorInput(p15);
phred754 0:35f90b280233 4
phred754 0:35f90b280233 5 float takeReading(){
phred754 0:35f90b280233 6 return sensorInput.read();
phred754 0:35f90b280233 7 }