Added the pin outs

Dependencies:   mbed mbed-rtos ShiftReg TextLCD

Revision:
7:d0159f675b30
Parent:
6:347c1f441b94
--- a/Interface/Interface.cpp	Thu Apr 11 18:12:31 2019 +0000
+++ b/Interface/Interface.cpp	Mon May 06 22:13:28 2019 +0000
@@ -1,10 +1,16 @@
 #include "Interface.hpp"
 //Define the variables here
-Serial PC(PB_10, PB_11);    //TX, RX
+Serial PC(PB_6, PB_7);    //TX, RX
+Serial Board(PB_10, PB_11); //TX, RX
+//TextLCD Lcd(PB_12, PB_13, PB_14, PB_15, PA_8, PA_9); // rs, e, d4-d7
 TextLCD Lcd(PB_12, PB_13, PB_14, PB_15, PA_8, PA_9); // rs, e, d4-d7
 DigitalOut On_board_led(PC_13);//Onborad LED needs no pass in parameter
 
-INTERFACE::INTERFACE(){}
+INTERFACE::INTERFACE(PinName N1, PinName N2, PinName N3, PinName N4,PinName N5, PinName N6, PinName N7, PinName N8,PinName N9, PinName N10, PinName N11):  _Rotary_Encoder_A(N1),_Rotary_Encoder_B(N2),_Rotary_Encoder_Button(N3),_Button_1(N4), _Button_2(N5), _Button_3(N6), _MOSFET_Safety(N7), _Shift_SCLK(N8),_Shift_Latch(N9), _Shift_Enable(N10), _Shift_Data(N11)            
+{
+
+}
+
 INTERFACE::~INTERFACE(){}
 void INTERFACE::Init(){}
 int INTERFACE::Post()