Allow user to connect multiple screen.

Dependencies:   mbed-rtos mbed

uLCD_Multiscreen/DrawPixel.h

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

File content as of revision 0:052d0f82433e:

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