Graphical demo for the LPC4088 Experiment Base Board with one of the Display Expansion Kits. This program displays how to write text in different fonts.

Dependencies:   EALib mbed

TextDemo.h

Committer:
embeddedartists
Date:
2015-06-25
Revision:
0:5e5e9ec91fc8

File content as of revision 0:5e5e9ec91fc8:


#ifndef TEXTDEMO_H
#define TEXTDEMO_H

#include "EaLcdBoardGPIO.h"
#include "lpc_swim.h"
#include "lpc_swim_font.h"

class TextDemo {
public:

    TextDemo(uint8_t *pFrameBuf, uint16_t dispWidth, uint16_t dispHeight);
    
    void run(EaLcdBoardGPIO& lcdBoard, uint32_t loops, uint32_t delayMs);

protected:
    
private:
    SWIM_WINDOW_T _win;
};

#endif /* TEXTDEMO_H */