PokittoLib with changes to lcd refresh etc.

Dependents:   Pokittris

Fork of Pokitto by Pokitto Community Team

This is a fork by user @Spinal, and is used in Pokittris for testing. Do not import this to your own program.

Committer:
spinal
Date:
Sun Oct 15 18:03:02 2017 +0000
Revision:
11:02ad9c807a21
Parent:
0:e8b8f36b4505
fixed 4color refreshRegion code

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