Added the pin outs

Dependencies:   mbed mbed-rtos ShiftReg TextLCD

Committer:
thomasmorris
Date:
Mon May 06 22:13:28 2019 +0000
Revision:
7:d0159f675b30
Parent:
6:347c1f441b94
Added the pinouts

Who changed what in which revision?

UserRevisionLine numberNew contents of line
thomasmorris 4:1ef122d47bf3 1 #ifndef _FEEDBACK_HPP_
thomasmorris 4:1ef122d47bf3 2 #define _FEEDBACK_HPP_
thomasmorris 4:1ef122d47bf3 3
thomasmorris 4:1ef122d47bf3 4 #include "mbed.h"
thomasmorris 4:1ef122d47bf3 5 #include "rtos.h"
thomasmorris 4:1ef122d47bf3 6
thomasmorris 4:1ef122d47bf3 7 //Libraries and header file includes
thomasmorris 4:1ef122d47bf3 8
thomasmorris 4:1ef122d47bf3 9
thomasmorris 4:1ef122d47bf3 10 class FEEDBACK
thomasmorris 4:1ef122d47bf3 11 {
thomasmorris 4:1ef122d47bf3 12 public://Public member functions and variables
thomasmorris 7:d0159f675b30 13
thomasmorris 7:d0159f675b30 14 FEEDBACK(PinName N1, PinName N2, PinName N3, PinName N4, PinName N5, PinName N6, PinName N7, PinName N8, PinName N9, PinName N10);
thomasmorris 4:1ef122d47bf3 15 ~FEEDBACK();
thomasmorris 4:1ef122d47bf3 16 void Init();
thomasmorris 4:1ef122d47bf3 17 int Post();
thomasmorris 6:347c1f441b94 18 void Test();
thomasmorris 4:1ef122d47bf3 19 //Public Functions
thomasmorris 4:1ef122d47bf3 20
thomasmorris 4:1ef122d47bf3 21 //Public Variabls
thomasmorris 4:1ef122d47bf3 22
thomasmorris 4:1ef122d47bf3 23 private://Private member functions and variables
thomasmorris 4:1ef122d47bf3 24
thomasmorris 4:1ef122d47bf3 25 //Private Functions
thomasmorris 4:1ef122d47bf3 26
thomasmorris 4:1ef122d47bf3 27 //Private Variables
thomasmorris 7:d0159f675b30 28 //Measurement
thomasmorris 7:d0159f675b30 29 AnalogIn _Battery_Measurement;
thomasmorris 7:d0159f675b30 30 AnalogIn _Temperature_Sensor_1;
thomasmorris 7:d0159f675b30 31 AnalogIn _Temperature_Sensor_2;
thomasmorris 7:d0159f675b30 32 AnalogIn _Temperature_Sensor_3;
thomasmorris 7:d0159f675b30 33 AnalogIn _Feedback_Sensor_1;
thomasmorris 7:d0159f675b30 34 AnalogIn _Feedback_Sensor_2;
thomasmorris 7:d0159f675b30 35 AnalogIn _Feedback_Sensor_3;
thomasmorris 7:d0159f675b30 36 AnalogIn _Feedback_Sensor_4;
thomasmorris 7:d0159f675b30 37 AnalogIn _Feedback_Sensor_5;
thomasmorris 7:d0159f675b30 38 AnalogIn _Feedback_Sensor_6;
thomasmorris 4:1ef122d47bf3 39
thomasmorris 4:1ef122d47bf3 40 };
thomasmorris 4:1ef122d47bf3 41 #endif //_FEEDBACK_