PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)

Dependents:   Sensitive

Fork of PokittoLib by Jonne Valola

Committer:
spinal
Date:
Wed Oct 18 14:47:54 2017 +0000
Revision:
15:0bbe8f6fae32
Parent:
0:e8b8f36b4505
direct lcd stuff used by sensitive

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pokitto 0:e8b8f36b4505 1 #ifndef POK_PALETTES_H
Pokitto 0:e8b8f36b4505 2 #define POK_PALETTES_H
Pokitto 0:e8b8f36b4505 3
Pokitto 0:e8b8f36b4505 4 #include "Pokitto_settings.h"
Pokitto 0:e8b8f36b4505 5
Pokitto 0:e8b8f36b4505 6 extern const unsigned char paletteDefault[];
Pokitto 0:e8b8f36b4505 7 extern const unsigned char paletteCGA[];
Pokitto 0:e8b8f36b4505 8 extern const unsigned char paletteNeon[];
Pokitto 0:e8b8f36b4505 9 extern const unsigned char palettePico[];
Pokitto 0:e8b8f36b4505 10 extern const unsigned char paletteCopper[];
Pokitto 0:e8b8f36b4505 11 extern const unsigned char paletteAction[];
Pokitto 0:e8b8f36b4505 12 extern const unsigned char paletteMagma[];
Pokitto 0:e8b8f36b4505 13 extern const unsigned char paletteRainbow[];
Pokitto 0:e8b8f36b4505 14 extern const unsigned char paletteMono[];
Pokitto 0:e8b8f36b4505 15 extern const unsigned char paletteGameboy[];
Pokitto 0:e8b8f36b4505 16 extern const unsigned char paletteZXSpec[];
Pokitto 0:e8b8f36b4505 17 extern const unsigned char paletteDB16[];
Pokitto 0:e8b8f36b4505 18
Pokitto 0:e8b8f36b4505 19
Pokitto 0:e8b8f36b4505 20 #define POK_DEFAULT_PALETTE paletteCGA
Pokitto 0:e8b8f36b4505 21
Pokitto 0:e8b8f36b4505 22 #endif
Pokitto 0:e8b8f36b4505 23
Pokitto 0:e8b8f36b4505 24