updates

Dependencies:   FATFileSystem

Fork of SDFileSystem by Neil Thiessen

Committer:
bunikewicz
Date:
Thu Nov 01 15:17:27 2018 +0000
Revision:
27:7c4478225857
updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bunikewicz 27:7c4478225857 1 // OCE560Input.h file for Exercise 6
bunikewicz 27:7c4478225857 2 #ifndef OCE560INPUT_H
bunikewicz 27:7c4478225857 3 #define OCE560INPUT_H
bunikewicz 27:7c4478225857 4
bunikewicz 27:7c4478225857 5 #include "mbed.h"
bunikewicz 27:7c4478225857 6
bunikewicz 27:7c4478225857 7 extern AnalogIn ain; // allow pc to be manipulated by other files
bunikewicz 27:7c4478225857 8 extern DigitalIn boolSwitch; // allow pc to be manipulated by other files
bunikewicz 27:7c4478225857 9 extern Serial pc; // allow pc to be manipulated by other files
bunikewicz 27:7c4478225857 10 void Convert_mV_C(void); // function prototype
bunikewicz 27:7c4478225857 11 void Boolean_ON_OFF(void); // function prototype
bunikewicz 27:7c4478225857 12
bunikewicz 27:7c4478225857 13 #endif