Graphical demo for the LPC4088 Experiment Base Board with one of the Display Expansion Kits. This program displays a Mandelbrot calculation in a circular zoomed-in sequence.

Dependencies:   EALib mbed

main.cpp

Committer:
embeddedartists
Date:
2014-10-03
Revision:
0:e24e3d741c52

File content as of revision 0:e24e3d741c52:

/******************************************************************************
 * Includes
 *****************************************************************************/
#include "mbed.h"

#include "TestDisplay.h"

/******************************************************************************
 * Typedefs and defines
 *****************************************************************************/


/******************************************************************************
 * Local variables
 *****************************************************************************/

DigitalOut myled(LED1);

/******************************************************************************
 * Local functions
 *****************************************************************************/

/*
 * Test program for the 4.3" and 5" displays. This test is supposed to run
 * on a LPC4088QSB board on an LPC4088 Experiment Base Board.
 */


int main() {
    printf("\n"
           "---\n"
           "Display Demo Program for 4.3 and 5 inch display on the LPC4088 Experiment Base Board\n"
           "Build Date: " __DATE__ " at " __TIME__ "\n"
           "\n");

    //TestDisplay display(TestDisplay::TFT_4_3);
    TestDisplay display(TestDisplay::TFT_5);
    display.runTest();
    
    while(1) {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}