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

Dependents:   YATTT sd_map_test cPong SnowDemo ... more

PokittoLib

Library for programming Pokitto hardware

How to Use

  1. Import this library to online compiler (see button "import" on the right hand side
  2. DO NOT import mbed-src anymore, a better version is now included inside PokittoLib
  3. Change My_settings.h according to your project
  4. Start coding!
Committer:
Pokitto
Date:
Mon Sep 18 11:47:51 2017 +0000
Revision:
0:e8b8f36b4505
Initial;

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