Michael Kuchnik / Mbed 2 deprecated uLCD_Multiscreen

Dependencies:   4DGL-uLCD-SE mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers BaudRate.h Source File

BaudRate.h

00001 #ifndef BAUDRATE_H
00002 #define BAUDRATE_H
00003 #include "Command.h"
00004 #include "uLCD_4DGL.h"
00005 class BaudRate: public Command {
00006     private:
00007         int rate;
00008     public:
00009         BaudRate(int rate);
00010         virtual void execute(uLCD_4DGL* uLCD);
00011 };
00012 #endif