Allow user to connect multiple screen.

Dependencies:   mbed-rtos mbed

uLCD_Multiscreen/BackgroundColor.cpp

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

File content as of revision 0:052d0f82433e:

#include "BackgroundColor.h"
#include "uLCD_4DGL.h"
BackgroundColor::BackgroundColor(int color) {
    this->color = color;
}
void BackgroundColor::execute(uLCD_4DGL* uLCD) {
    uLCD->background_color(color);     
}