Merge pull request #7 from jensh/bigtest-fix

Add missing color definitions to examples/bigtest.
This commit is contained in:
max mc costa 2015-05-22 16:23:38 +02:00
commit d86d1629ec

View file

@ -2,6 +2,16 @@
#include <Adafruit_GFX.h>
#include <TFT_ILI9163C.h>
// Color definitions
#define BLACK 0x0000
#define BLUE 0x001F
#define RED 0xF800
#define GREEN 0x07E0
#define CYAN 0x07FF
#define MAGENTA 0xF81F
#define YELLOW 0xFFE0
#define WHITE 0xFFFF
/*
Teensy3.x and Arduino's
You are using 4 wire SPI here, so:
@ -340,4 +350,4 @@ void randomPoints(){
}
display.clearScreen();
}
}
}