Added the pin outs

Dependencies:   mbed mbed-rtos ShiftReg TextLCD

Post/Post.cpp

Committer:
thomasmorris
Date:
2019-04-11
Revision:
4:1ef122d47bf3
Parent:
3:3700f0c29710
Child:
5:20decc99e50c

File content as of revision 4:1ef122d47bf3:

#include "Post.hpp"
POWER POWER_1(PA_10,PA_11,PB_0,PB_1);
INTERFACE INTERFACE_1;
void POST()
{
    if(POWER_1.Post() == 1)//Success
    {
        PC.printf("POWER Post pass\n");   
    }
    if(INTERFACE_1.Post() == 1)//Success
    {
        PC.printf("Interface Post pass\n");   
    }
}