Added the pin outs

Dependencies:   mbed mbed-rtos ShiftReg TextLCD

Interface/Interface.cpp

Committer:
thomasmorris
Date:
2019-04-10
Revision:
3:3700f0c29710
Child:
4:1ef122d47bf3

File content as of revision 3:3700f0c29710:

#include "Interface.hpp"
//Define the variables here
Serial PC(PB_10, PB_11);    //TX, RX
TextLCD LCD(PB_12, PB_13, PB_14, PB_15, PA_8, PA_9); // rs, e, d4-d7


INTERFACE::INTERFACE(){}
INTERFACE::~INTERFACE(){}
void INTERFACE::Init(){}
int INTERFACE::Post()
{
    return 1;//Success
}
void INTERFACE::Serial()
{
    while(1)
    {
        PC.printf("Testing Serial\n");   
        Thread::wait(1000);
    }
}