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 DrawPixel.h Source File

DrawPixel.h

00001 #ifndef DRAWPIXEL_H
00002 #define DRAWPIXEL_H
00003 #include "Command.h"
00004 #include "uLCD_4DGL.h"
00005 class DrawPixel: public Command {
00006     private:
00007         int x;
00008         int y;
00009         int color;
00010     public:
00011         DrawPixel(int x, int y, int color);
00012         virtual void execute(uLCD_4DGL* uLCD);
00013 };
00014 #endif