Allow user to connect multiple screen.

Dependencies:   mbed-rtos mbed

uLCD_Multiscreen/BaudRate.h

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

File content as of revision 0:052d0f82433e:

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