Allow user to connect multiple screen.

Dependencies:   mbed-rtos mbed

uLCD_Multiscreen/BackgroundColor.h

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

File content as of revision 0:052d0f82433e:

#ifndef BACKGROUNDCOLOR_H
#define BACKGROUNDCOLOR_H
#include "Command.h"
#include "uLCD_4DGL.h"
class BackgroundColor: public Command {
    private:
        int color;
    public:
        BackgroundColor(int color);
        virtual void execute(uLCD_4DGL* uLCD);
};
#endif