Allow user to connect multiple screen.

Dependencies:   mbed-rtos mbed

Committer:
Ratchapong
Date:
Wed Mar 11 05:00:37 2015 +0000
Revision:
0:052d0f82433e
Working

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Ratchapong 0:052d0f82433e 1 #ifndef COMMAND_H
Ratchapong 0:052d0f82433e 2 #define COMMAND_H
Ratchapong 0:052d0f82433e 3 #include "uLCD_4DGL.h"
Ratchapong 0:052d0f82433e 4 /**
Ratchapong 0:052d0f82433e 5 * Class represents a uLCD command.
Ratchapong 0:052d0f82433e 6 */
Ratchapong 0:052d0f82433e 7 class Command {
Ratchapong 0:052d0f82433e 8 public:
Ratchapong 0:052d0f82433e 9 /**
Ratchapong 0:052d0f82433e 10 * Executes the command on the target uLCD.
Ratchapong 0:052d0f82433e 11 * @param uLCD the lcd to execute the command on.
Ratchapong 0:052d0f82433e 12 */
Ratchapong 0:052d0f82433e 13 virtual void execute(uLCD_4DGL* uLCD) = 0;
Ratchapong 0:052d0f82433e 14 };
Ratchapong 0:052d0f82433e 15 #endif