A classy affair

Dependencies:   mbed mbed-rtos ShiftReg TextLCD

main.cpp

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

File content as of revision 4:1ef122d47bf3:

#include "Setup.hpp"

DigitalOut myled(PC_13);
void Serial_Function(){INTERFACE_1.Serial();}//Written inside the interface class and Serial function
void LCD_Function(){INTERFACE_1.LCD();}//LCD output
void Onboard_Led(){while(1){myled = !myled; Thread::wait(1000);}}
void Schedules_Function(){/*SCHEDULES.Schedules_output();*/}//Fix this
int main()
{   
    POST();//Run Power on self test
    Serial_Thread.start(Serial_Function);
    LCD_Thread.start(LCD_Function);
    LED_Thread.start(Onboard_Led);
    Schedules_Thread.start(Schedules_Function);
    while(1)
    {
        myled = 1; // LED is ON
        Thread::wait(500);
    }
}