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:
Wed Dec 25 23:59:52 2019 +0000
Revision:
71:531419862202
Parent:
31:f4b9b85c7b62
Changed Mode2 C++ refresh code (graphical errors)

Who changed what in which revision?

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