Template code for ELEC1620 mini-project (automotive electronics)
Dependencies: N5110 ShiftReg Tone mbed
Revision 1:76241e21ec61, committed 2017-03-13
- Comitter:
- eencae
- Date:
- Mon Mar 13 07:01:51 2017 +0000
- Parent:
- 0:d5312060f649
- Commit message:
- Fixed type in Shift declaration.
Changed in this revision
Main/main.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/Main/main.h Wed Mar 08 20:05:58 2017 +0000 +++ b/Main/main.h Mon Mar 13 07:01:51 2017 +0000 @@ -4,7 +4,7 @@ // include the different header files #include "mbed.h" #include "N5110.h" -#include "Shift.h" +#include "ShiftReg.h" #include "Tone.h" #include "ModeA.h" #include "ModeB.h" @@ -35,7 +35,7 @@ extern AnalogIn pot_2; extern Tone speaker; -extern Shift; +extern ShiftReg shift; // function prototypes void init();