Allow user to connect multiple screen.

Dependencies:   mbed-rtos mbed

uLCD_Multiscreen/Blit.h

Committer:
Ratchapong
Date:
2015-03-11
Revision:
0:052d0f82433e

File content as of revision 0:052d0f82433e:

#ifndef BLIT_H
#define BLIT_H
#include "Command.h"
#include "uLCD_4DGL.h"
class Blit: public Command {
    private:
        int x;
        int y;
        int w;
        int h;
        int *colors;
    public:
        Blit(int x, int y, int w, int h, int *colors);
        virtual void execute(uLCD_4DGL* uLCD);
};
#endif