Allow user to connect multiple screen.

Dependencies:   mbed-rtos mbed

uLCD_Multiscreen/Command.h

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

File content as of revision 0:052d0f82433e:

#ifndef COMMAND_H
#define COMMAND_H
#include "uLCD_4DGL.h"
/**
 * Class represents a uLCD command. 
 */
class Command {
        public:
        /**
         * Executes the command on the target uLCD.
         * @param uLCD the lcd to execute the command on.
         */
        virtual void execute(uLCD_4DGL* uLCD) = 0;
};
#endif