Luke Cartwright / Mbed 2 deprecated ELEC2645_Project_el18loc_nearlythere

Dependencies:   mbed

Startup/startup.h

Committer:
lukeocarwright
Date:
2020-05-05
Revision:
7:33cb5f2db1ee
Child:
9:f6ba53e355a0

File content as of revision 7:33cb5f2db1ee:

#ifndef STARTUP_H
#define STARTUP_H

#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
#include "LUTs.h"

/** startup class
 * @author Luke Cartwright, University of Leeds
 * @brief: manages startup and initialisation
 * @date May 2020
*/



class startup
{
public:
    //methods
    //constructor
    startup();

    //destructior
    ~startup();
    
    void initialise(N5110 &lcd, Gamepad &pad);

private:
};

#endif