ELEC2645 (2018/19) / Mbed 2 deprecated ll16o2l_ELEC2645

Dependencies:   mbed Gamepad

Instuctions/Instruction.h

Committer:
ll16o2l
Date:
2019-04-30
Revision:
9:99287b26be1e
Child:
11:1c5c549ba75e

File content as of revision 9:99287b26be1e:

#ifndef INSTRUCTION_H
#define INSTRUCTION_H

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


class Instruction
{
public:
    Instruction();
    ~Instruction();
    
private:
    void control(Gamepad &pad);
    void write(N5110 &lcd, Gamepad &pad);
    
    int move_up;
    int move_down;
    int y;

}

#endif